Initial commit
This commit is contained in:
commit
ed6accc89d
72 changed files with 17330 additions and 0 deletions
.dockerignore.env.example.gitignore.gitlab-ci.yml.releaserc
.vscode
DockerfileLICENSEREADME.mddev-entrypoint.shdocker-entrypoint.shenv.d.tsindex.htmlnginx
package-lock.jsonpackage.jsonpublic
src
tsconfig.app.jsontsconfig.jsontsconfig.node.jsonupdate-version.shvite.config.ts
1
.dockerignore
Executable file
1
.dockerignore
Executable file
|
@ -0,0 +1 @@
|
|||
.vscode/
|
2
.env.example
Executable file
2
.env.example
Executable file
|
@ -0,0 +1,2 @@
|
|||
# URL to use for accessing the Backend API
|
||||
API_URL=http://localhost:3000/api/v1
|
5
.gitignore
vendored
Executable file
5
.gitignore
vendored
Executable file
|
@ -0,0 +1,5 @@
|
|||
# Files that might contain secrets
|
||||
.env.production
|
||||
.env
|
||||
# Files that take up unnecesarry space in repo
|
||||
node_modules/
|
45
.gitlab-ci.yml
Executable file
45
.gitlab-ci.yml
Executable file
|
@ -0,0 +1,45 @@
|
|||
stages:
|
||||
- build
|
||||
- docker
|
||||
|
||||
cache:
|
||||
key: "$CI_COMMIT_REF_SLUG"
|
||||
paths:
|
||||
- ~/.npm/
|
||||
|
||||
build:
|
||||
stage: build
|
||||
image: alpine:latest
|
||||
before_script:
|
||||
- apk update && apk add git tar nodejs npm bash
|
||||
script:
|
||||
- npm install
|
||||
- npm ci
|
||||
- npm run build
|
||||
- npx semantic-release
|
||||
- find . -not -path "./node_modules/*" -type f -print0 | xargs -0 tar -czvf build-artifacts.tar.gz
|
||||
artifacts:
|
||||
paths:
|
||||
- build-artifacts.tar.gz
|
||||
only:
|
||||
- merge_requests
|
||||
- pushes
|
||||
|
||||
docker:
|
||||
stage: docker
|
||||
image: docker:stable
|
||||
before_script:
|
||||
- docker info
|
||||
script:
|
||||
- apk add tar
|
||||
- tar -xzvf build-artifacts.tar.gz
|
||||
# Tag
|
||||
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
||||
- docker build -t $CI_REGISTRY/scheduletogether/frontend:$CI_COMMIT_TAG .
|
||||
- docker push $CI_REGISTRY/scheduletogether/frontend:$CI_COMMIT_TAG
|
||||
# Latest
|
||||
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
||||
- docker build -t $CI_REGISTRY/scheduletogether/frontend:latest .
|
||||
- docker push $CI_REGISTRY/scheduletogether/frontend:latest
|
||||
only:
|
||||
- tags
|
29
.releaserc
Executable file
29
.releaserc
Executable file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"branches": [
|
||||
"main",
|
||||
{
|
||||
"name": "dev",
|
||||
"prerelease": true
|
||||
}
|
||||
],
|
||||
"debug": true,
|
||||
"ci": true,
|
||||
"dryRun": false,
|
||||
"plugins": [
|
||||
"@semantic-release/commit-analyzer",
|
||||
"@semantic-release/release-notes-generator",
|
||||
[
|
||||
"@semantic-release/exec",
|
||||
{
|
||||
"prepareCmd": "bash ./update-version.sh ${nextRelease.version} > /dev/null"
|
||||
}
|
||||
],
|
||||
[
|
||||
"@semantic-release/git",
|
||||
{
|
||||
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
|
||||
}
|
||||
],
|
||||
"@semantic-release/gitlab"
|
||||
]
|
||||
}
|
10
.vscode/extensions.json
vendored
Executable file
10
.vscode/extensions.json
vendored
Executable file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"recommendations": [
|
||||
"Vue.volar",
|
||||
"Vue.vscode-typescript-vue-plugin",
|
||||
"vivaxy.vscode-conventional-commits",
|
||||
"dbaeumer.vscode-eslint",
|
||||
"esbenp.prettier-vscode",
|
||||
"mgmcdermott.vscode-language-babel"
|
||||
]
|
||||
}
|
2
.vscode/settings.json
vendored
Executable file
2
.vscode/settings.json
vendored
Executable file
|
@ -0,0 +1,2 @@
|
|||
{
|
||||
}
|
31
Dockerfile
Executable file
31
Dockerfile
Executable file
|
@ -0,0 +1,31 @@
|
|||
# syntax=docker/dockerfile:1
|
||||
|
||||
FROM node:20-alpine
|
||||
LABEL maintainer="marco@zervo.org"
|
||||
WORKDIR /app
|
||||
|
||||
COPY . .
|
||||
RUN npm ci
|
||||
RUN npm run build
|
||||
|
||||
RUN apk add nginx && \
|
||||
mkdir -p /run/nginx && \
|
||||
touch /run/nginx/nginx.pid && \
|
||||
adduser -D -g 'www' www && \
|
||||
mkdir /www && \
|
||||
chown -R www:www /var/lib/nginx /www && \
|
||||
chown -R www:www /www
|
||||
|
||||
COPY nginx/nginx.conf /etc/nginx/nginx.conf
|
||||
COPY nginx/proxy.conf /etc/nginx/proxy.conf
|
||||
COPY nginx/mime.types /etc/nginx/mime.types
|
||||
|
||||
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
||||
RUN chmod +x /docker-entrypoint.sh
|
||||
|
||||
RUN cp -r ./dist/* /www && rm -r ./*
|
||||
|
||||
ENTRYPOINT ["/docker-entrypoint.sh"]
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
|
||||
EXPOSE 3123
|
661
LICENSE
Executable file
661
LICENSE
Executable file
|
@ -0,0 +1,661 @@
|
|||
GNU AFFERO GENERAL PUBLIC LICENSE
|
||||
Version 3, 19 November 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU Affero General Public License is a free, copyleft license for
|
||||
software and other kinds of works, specifically designed to ensure
|
||||
cooperation with the community in the case of network server software.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
our General Public Licenses are intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
Developers that use our General Public Licenses protect your rights
|
||||
with two steps: (1) assert copyright on the software, and (2) offer
|
||||
you this License which gives you legal permission to copy, distribute
|
||||
and/or modify the software.
|
||||
|
||||
A secondary benefit of defending all users' freedom is that
|
||||
improvements made in alternate versions of the program, if they
|
||||
receive widespread use, become available for other developers to
|
||||
incorporate. Many developers of free software are heartened and
|
||||
encouraged by the resulting cooperation. However, in the case of
|
||||
software used on network servers, this result may fail to come about.
|
||||
The GNU General Public License permits making a modified version and
|
||||
letting the public access it on a server without ever releasing its
|
||||
source code to the public.
|
||||
|
||||
The GNU Affero General Public License is designed specifically to
|
||||
ensure that, in such cases, the modified source code becomes available
|
||||
to the community. It requires the operator of a network server to
|
||||
provide the source code of the modified version running there to the
|
||||
users of that server. Therefore, public use of a modified version, on
|
||||
a publicly accessible server, gives the public access to the source
|
||||
code of the modified version.
|
||||
|
||||
An older license, called the Affero General Public License and
|
||||
published by Affero, was designed to accomplish similar goals. This is
|
||||
a different license, not a version of the Affero GPL, but Affero has
|
||||
released a new version of the Affero GPL which permits relicensing under
|
||||
this license.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU Affero General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Remote Network Interaction; Use with the GNU General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, if you modify the
|
||||
Program, your modified version must prominently offer all users
|
||||
interacting with it remotely through a computer network (if your version
|
||||
supports such interaction) an opportunity to receive the Corresponding
|
||||
Source of your version by providing access to the Corresponding Source
|
||||
from a network server at no charge, through some standard or customary
|
||||
means of facilitating copying of software. This Corresponding Source
|
||||
shall include the Corresponding Source for any work covered by version 3
|
||||
of the GNU General Public License that is incorporated pursuant to the
|
||||
following paragraph.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the work with which it is combined will remain governed by version
|
||||
3 of the GNU General Public License.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU Affero General Public License from time to time. Such new versions
|
||||
will be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU Affero General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU Affero General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU Affero General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If your software can interact with users remotely through a computer
|
||||
network, you should also make sure that it provides a way for users to
|
||||
get its source. For example, if your program is a web application, its
|
||||
interface could display a "Source" link that leads users to an archive
|
||||
of the code. There are many ways you could offer source, and different
|
||||
solutions will be better for different programs; see section 13 for the
|
||||
specific requirements.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU AGPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
18
README.md
Executable file
18
README.md
Executable file
|
@ -0,0 +1,18 @@
|
|||
# ScheduleTogether Frontend
|
||||
|
||||
[](https://git.zyner.org/scheduletogether/frontend/-/commits/main)
|
||||
[](https://git.zyner.org/scheduletogether/frontend/-/releases)
|
||||
|
||||
Frontend for ScheduleTogether.
|
||||
|
||||
**Testing:**
|
||||
`npm run dev`
|
||||
|
||||
In dev mode, the interface is exposed on [http://localhost:5173/](http://localhost:5173/).
|
||||
|
||||
Note: you need to have the [backend](https://git.zyner.org/scheduletogether/backend) running in order to properly test the frontend. Dummy backend for development might be a focus in the future.
|
||||
|
||||
**Building:**
|
||||
`npm run build`
|
||||
|
||||
**Note:** The recommended way of running ScheduleTogether is with the docker-compose file found [here](https://git.zyner.org/scheduletogether/schedule-together). It includes the frontend, backend and a database. If you want to run each service separately, remember to create a .env file. Example file for Frontend can be found [here](https://git.zyner.org/scheduletogether/frontend/-/blob/main/.env.example). If you won't be running in docker, you should instead edit the [config.json](https://git.zyner.org/scheduletogether/frontend/-/blob/main/public/config.json) file.
|
35
dev-entrypoint.sh
Executable file
35
dev-entrypoint.sh
Executable file
|
@ -0,0 +1,35 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Set default API_URL
|
||||
DEFAULT_API_URL="http://localhost:4000/api"
|
||||
|
||||
# Print current directory
|
||||
echo "Current directory: $(pwd)"
|
||||
|
||||
# Check if the .env file exists and is non-empty
|
||||
if [ -s .env ]; then
|
||||
# Read the API_URL variable directly from the .env file
|
||||
API_URL=$(grep -E '^API_URL=' .env | cut -d= -f2-)
|
||||
|
||||
# Check if API_URL is set
|
||||
if [ -z "$API_URL" ]; then
|
||||
echo "Error: API_URL is not set in the .env file."
|
||||
exit 1
|
||||
else
|
||||
echo "API_URL is $API_URL"
|
||||
fi
|
||||
else
|
||||
echo ".env file not found or empty, using default API_URL: $DEFAULT_API_URL"
|
||||
API_URL="$DEFAULT_API_URL"
|
||||
fi
|
||||
|
||||
# Attempt to create or update the config.json file
|
||||
if ! cat > ./public/config.json <<EOF
|
||||
{
|
||||
"apiUrl": "$API_URL"
|
||||
}
|
||||
EOF
|
||||
then
|
||||
echo "Failed to write to config.json"
|
||||
exit 1
|
||||
fi
|
29
docker-entrypoint.sh
Executable file
29
docker-entrypoint.sh
Executable file
|
@ -0,0 +1,29 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Environment variable to set the API URL (if not provided, use a default)
|
||||
API_URL="${API_URL:-http://localhost:3000/api}"
|
||||
|
||||
# Log the provided API_URL
|
||||
echo "Using API URL: $API_URL"
|
||||
|
||||
# Check directory ownership and permissions (update as needed)
|
||||
if [ ! -w /www ]; then
|
||||
echo "The /www directory is not writable."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Attempt to create or update the config.json file
|
||||
if ! cat > /www/config.json <<EOF
|
||||
{
|
||||
"apiUrl": "$API_URL"
|
||||
}
|
||||
EOF
|
||||
then
|
||||
echo "Failed to write to config.json"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "config.json updated successfully."
|
||||
|
||||
# Run the CMD (nginx) command
|
||||
exec "$@"
|
1
env.d.ts
vendored
Executable file
1
env.d.ts
vendored
Executable file
|
@ -0,0 +1 @@
|
|||
/// <reference types="vite/client" />
|
41
index.html
Executable file
41
index.html
Executable file
|
@ -0,0 +1,41 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>ScheduleTogether</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="./src/main.ts"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
96
nginx/mime.types
Executable file
96
nginx/mime.types
Executable file
|
@ -0,0 +1,96 @@
|
|||
types {
|
||||
text/html html htm shtml;
|
||||
text/css css;
|
||||
text/xml xml;
|
||||
image/gif gif;
|
||||
image/jpeg jpeg jpg;
|
||||
application/javascript js;
|
||||
application/atom+xml atom;
|
||||
application/rss+xml rss;
|
||||
|
||||
text/mathml mml;
|
||||
text/plain txt;
|
||||
text/vnd.sun.j2me.app-descriptor jad;
|
||||
text/vnd.wap.wml wml;
|
||||
text/x-component htc;
|
||||
|
||||
image/png png;
|
||||
image/svg+xml svg svgz;
|
||||
image/tiff tif tiff;
|
||||
image/vnd.wap.wbmp wbmp;
|
||||
image/webp webp;
|
||||
image/x-icon ico;
|
||||
image/x-jng jng;
|
||||
image/x-ms-bmp bmp;
|
||||
|
||||
font/woff woff;
|
||||
font/woff2 woff2;
|
||||
|
||||
application/java-archive jar war ear;
|
||||
application/json json;
|
||||
application/mac-binhex40 hqx;
|
||||
application/msword doc;
|
||||
application/pdf pdf;
|
||||
application/postscript ps eps ai;
|
||||
application/rtf rtf;
|
||||
application/vnd.apple.mpegurl m3u8;
|
||||
application/vnd.google-earth.kml+xml kml;
|
||||
application/vnd.google-earth.kmz kmz;
|
||||
application/vnd.ms-excel xls;
|
||||
application/vnd.ms-fontobject eot;
|
||||
application/vnd.ms-powerpoint ppt;
|
||||
application/vnd.oasis.opendocument.graphics odg;
|
||||
application/vnd.oasis.opendocument.presentation odp;
|
||||
application/vnd.oasis.opendocument.spreadsheet ods;
|
||||
application/vnd.oasis.opendocument.text odt;
|
||||
application/vnd.openxmlformats-officedocument.presentationml.presentation
|
||||
pptx;
|
||||
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
|
||||
xlsx;
|
||||
application/vnd.openxmlformats-officedocument.wordprocessingml.document
|
||||
docx;
|
||||
application/vnd.wap.wmlc wmlc;
|
||||
application/x-7z-compressed 7z;
|
||||
application/x-cocoa cco;
|
||||
application/x-java-archive-diff jardiff;
|
||||
application/x-java-jnlp-file jnlp;
|
||||
application/x-makeself run;
|
||||
application/x-perl pl pm;
|
||||
application/x-pilot prc pdb;
|
||||
application/x-rar-compressed rar;
|
||||
application/x-redhat-package-manager rpm;
|
||||
application/x-sea sea;
|
||||
application/x-shockwave-flash swf;
|
||||
application/x-stuffit sit;
|
||||
application/x-tcl tcl tk;
|
||||
application/x-x509-ca-cert der pem crt;
|
||||
application/x-xpinstall xpi;
|
||||
application/xhtml+xml xhtml;
|
||||
application/xspf+xml xspf;
|
||||
application/zip zip;
|
||||
|
||||
application/octet-stream bin exe dll;
|
||||
application/octet-stream deb;
|
||||
application/octet-stream dmg;
|
||||
application/octet-stream iso img;
|
||||
application/octet-stream msi msp msm;
|
||||
|
||||
audio/midi mid midi kar;
|
||||
audio/mpeg mp3;
|
||||
audio/ogg ogg;
|
||||
audio/x-m4a m4a;
|
||||
audio/x-realaudio ra;
|
||||
|
||||
video/3gpp 3gpp 3gp;
|
||||
video/mp2t ts;
|
||||
video/mp4 mp4;
|
||||
video/mpeg mpeg mpg;
|
||||
video/quicktime mov;
|
||||
video/webm webm;
|
||||
video/x-flv flv;
|
||||
video/x-m4v m4v;
|
||||
video/x-mng mng;
|
||||
video/x-ms-asf asx asf;
|
||||
video/x-ms-wmv wmv;
|
||||
video/x-msvideo avi;
|
||||
}
|
39
nginx/nginx.conf
Executable file
39
nginx/nginx.conf
Executable file
|
@ -0,0 +1,39 @@
|
|||
user www www; ## Default: nobody
|
||||
worker_processes 5; ## Default: 1
|
||||
error_log logs/error.log;
|
||||
pid logs/nginx.pid;
|
||||
worker_rlimit_nofile 8192;
|
||||
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
include /etc/nginx/mime.types;
|
||||
include /etc/nginx/proxy.conf;
|
||||
index index.html;
|
||||
|
||||
default_type application/octet-stream;
|
||||
log_format main '$remote_addr - $remote_user [$time_local] $status '
|
||||
'"$request" $body_bytes_sent "$http_referer" '
|
||||
'"$http_user_agent" "$http_x_forwarded_for"';
|
||||
access_log logs/access.log main;
|
||||
sendfile on;
|
||||
tcp_nopush on;
|
||||
server_names_hash_bucket_size 128; # this seems to be required for some vhosts
|
||||
|
||||
server { # simple reverse-proxy
|
||||
listen 3123;
|
||||
server_name _;
|
||||
access_log logs/scheduletogether.access.log main;
|
||||
|
||||
# serve static files
|
||||
location / {
|
||||
root /www;
|
||||
expires 1d;
|
||||
|
||||
# Vue Router configuration
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
||||
}
|
10
nginx/proxy.conf
Executable file
10
nginx/proxy.conf
Executable file
|
@ -0,0 +1,10 @@
|
|||
proxy_redirect off;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
client_max_body_size 10m;
|
||||
client_body_buffer_size 128k;
|
||||
proxy_connect_timeout 90;
|
||||
proxy_send_timeout 90;
|
||||
proxy_read_timeout 90;
|
||||
proxy_buffers 32 4k;
|
12877
package-lock.json
generated
Executable file
12877
package-lock.json
generated
Executable file
File diff suppressed because it is too large
Load diff
51
package.json
Executable file
51
package.json
Executable file
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"name": "scheduletogether-frontend",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "./dev-entrypoint.sh && vite --host",
|
||||
"build": "run-p type-check build-only",
|
||||
"preview": "vite preview",
|
||||
"build-only": "vite build",
|
||||
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
|
||||
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
||||
"format": "prettier --write src/"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://git.zyner.org/scheduletogether/frontend.git"
|
||||
},
|
||||
"author": "Marco Vitchi Thulin <marco@zervo.org> (https://zervo.org)",
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-svg-core": "^6.4.2",
|
||||
"@fortawesome/free-brands-svg-icons": "^6.4.2",
|
||||
"@fortawesome/free-solid-svg-icons": "^6.4.2",
|
||||
"@fortawesome/vue-fontawesome": "^3.0.3",
|
||||
"pinia": "^2.1.6",
|
||||
"vee-validate": "^4.11.3",
|
||||
"vue": "^3.3.4",
|
||||
"vue-router": "^4.2.4",
|
||||
"yup": "^1.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@semantic-release/gitlab": "^12.0.3",
|
||||
"@semantic-release/exec": "^6.0.3",
|
||||
"@rushstack/eslint-patch": "^1.3.2",
|
||||
"@semantic-release/git": "^10.0.1",
|
||||
"@semantic-release/release-notes-generator": "^11.0.0",
|
||||
"@tsconfig/node18": "^18.2.0",
|
||||
"@types/node": "^18.17.5",
|
||||
"@vitejs/plugin-vue": "^4.3.1",
|
||||
"@vitejs/plugin-vue-jsx": "^3.0.2",
|
||||
"@vue/eslint-config-prettier": "^8.0.0",
|
||||
"@vue/eslint-config-typescript": "^11.0.3",
|
||||
"@vue/tsconfig": "^0.4.0",
|
||||
"eslint": "^8.46.0",
|
||||
"eslint-plugin-vue": "^9.16.1",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"prettier": "^3.0.0",
|
||||
"typescript": "~5.1.6",
|
||||
"vite": "^4.4.9",
|
||||
"vue-tsc": "^1.8.8"
|
||||
}
|
||||
}
|
3
public/config.json
Executable file
3
public/config.json
Executable file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"apiUrl": "http://localhost:4000/api/v1"
|
||||
}
|
BIN
public/favicon.ico
Executable file
BIN
public/favicon.ico
Executable file
Binary file not shown.
After Width: 32px | Height: 32px | Size: 4.2 KiB |
115
src/App.vue
Executable file
115
src/App.vue
Executable file
|
@ -0,0 +1,115 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import { RouterLink, RouterView } from 'vue-router';
|
||||
import { useAuthStore } from '@/stores';
|
||||
import { Alert } from '@/components';
|
||||
|
||||
import { library } from '@fortawesome/fontawesome-svg-core';
|
||||
import { faBars, faArrowRight, faCircleUser, faBell } from '@fortawesome/free-solid-svg-icons';
|
||||
import { faGitlab, faInstagram, faYoutube } from '@fortawesome/free-brands-svg-icons';
|
||||
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
|
||||
|
||||
const authStore = useAuthStore();
|
||||
|
||||
library.add(faBars, faArrowRight, faCircleUser, faBell, faGitlab, faInstagram, faYoutube);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div id="app">
|
||||
<nav class="navbar" v-show="authStore.user">
|
||||
<div class="navbar-logo">ScheduleTogether</div>
|
||||
<div class="navbar-items">
|
||||
<div class="navbar-links">
|
||||
<RouterLink to="/">Home</RouterLink>
|
||||
<RouterLink to="/schedule">Schedule</RouterLink>
|
||||
<RouterLink v-if="authStore.user && authStore.user.role == 'admin'" to="/admin/dashboard">Admin</RouterLink>
|
||||
<a @click="authStore.logout()">Logout</a>
|
||||
</div>
|
||||
<div class="navbar-icons">
|
||||
<a><font-awesome-icon :icon="faBell" size="xl" /></a>
|
||||
<a><font-awesome-icon :icon="faCircleUser" size="xl" /></a>
|
||||
</div>
|
||||
<div class="navbar-menu">
|
||||
<font-awesome-icon
|
||||
class="menu-icon"
|
||||
@click="toggleMenu"
|
||||
:icon="isMenuOpen ? faArrowRight : faBars"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div v-show="authStore.user" class="side-menu" :class="{ 'open': isMenuOpen }">
|
||||
<div class="side-menu-content">
|
||||
<RouterLink class="side-menu-button" to="/" @click="closeMenu">Home</RouterLink>
|
||||
<RouterLink class="side-menu-button" to="/schedule" @click="closeMenu">Schedule</RouterLink>
|
||||
<RouterLink v-if="authStore.user && authStore.user.role == 'admin'" class="side-menu-button" to="/admin/dashboard" @click="closeMenu">Admin</RouterLink>
|
||||
<button class="side-menu-button negative" @click="authStore.logout()">Logout</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="content-padding"></div>
|
||||
<RouterView></RouterView>
|
||||
<div class="content-spacer-smaller"></div>
|
||||
<Alert />
|
||||
</div>
|
||||
<footer class="footer">
|
||||
<div class="footer-content">
|
||||
<div class="footer-logo">ScheduleTogether</div>
|
||||
<div class="footer-contact-info">
|
||||
<p>Email: contact@zervo.org</p>
|
||||
<p>Copyright © 2023 Zervo Network</p>
|
||||
</div>
|
||||
<div class="footer-social-icons">
|
||||
<a href="https://git.zyner.org/scheduletogether"><font-awesome-icon :icon="faGitlab" size="2xl" /></a>
|
||||
<a href="https://www.instagram.com/"><font-awesome-icon :icon="faInstagram" size="2xl" /></a>
|
||||
<a href="https://www.youtube.com"><font-awesome-icon :icon="faYoutube" size="2xl" /></a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'App',
|
||||
data() {
|
||||
return {
|
||||
isMenuOpen: false,
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
toggleMenu() {
|
||||
this.isMenuOpen = !this.isMenuOpen;
|
||||
},
|
||||
closeMenu() {
|
||||
this.isMenuOpen = false;
|
||||
},
|
||||
},
|
||||
components: {
|
||||
FontAwesomeIcon,
|
||||
},
|
||||
};
|
||||
</script>
|
37
src/assets/base.css
Executable file
37
src/assets/base.css
Executable file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
body {
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
.app-container {
|
||||
min-height: 350px;
|
||||
}
|
||||
|
||||
.btn-delete-user {
|
||||
width: 40px;
|
||||
text-align: center;
|
||||
box-sizing: content-box;
|
||||
}
|
1
src/assets/logo.svg
Executable file
1
src/assets/logo.svg
Executable file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 261.76 226.69"><path d="M161.096.001l-30.225 52.351L100.647.001H-.005l130.877 226.688L261.749.001z" fill="#41b883"/><path d="M161.096.001l-30.225 52.351L100.647.001H52.346l78.526 136.01L209.398.001z" fill="#34495e"/></svg>
|
After (image error) Size: 276 B |
13
src/assets/logo_schoolsoft.svg
Executable file
13
src/assets/logo_schoolsoft.svg
Executable file
File diff suppressed because one or more lines are too long
After (image error) Size: 18 KiB |
30
src/assets/logo_skola24.svg
Executable file
30
src/assets/logo_skola24.svg
Executable file
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="514px" height="148px" viewBox="0 0 514 148" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 52.2 (67145) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>skola24_logo_cmyk</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<polygon id="path-1" points="0 0.29954067 325.526961 0.29954067 325.526961 147.957512 0 147.957512"></polygon>
|
||||
</defs>
|
||||
<g id="Styles" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Logo">
|
||||
<g id="skola24_logo_cmyk">
|
||||
<g id="Group-4">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Clip-2"></g>
|
||||
<path d="M9.98122865,53.8288038 C9.98122865,45.8283062 16.8373939,38.5883445 29.0268402,38.5883445 C37.2211047,38.5883445 42.8241295,42.0121722 45.8968017,44.6103158 C46.6720496,45.2625072 47.67173,45.6569378 48.764865,45.6569378 C51.2279587,45.6569378 53.2244876,43.66 53.2244876,41.1964019 C53.2244876,39.8289952 52.6099532,38.6053397 51.6414242,37.787445 C47.5825234,34.4138947 39.9546501,29.6984306 29.0268402,29.6984306 C11.3780909,29.6984306 0.458068871,40.8749091 0.458068871,53.8288038 C0.458068871,85.5772823 48.7068099,72.8776077 48.7068099,95.7375885 C48.7068099,105.26199 41.7239146,112.247732 28.3917741,112.247732 C17.8052149,112.247732 10.9271019,107.754622 7.35529752,104.532612 C7.21723967,104.407981 7.0742259,104.293971 6.92554821,104.190584 C6.2062314,103.666565 5.32053719,103.358526 4.3626281,103.358526 C1.9533416,103.358526 0,105.312268 0,107.72134 C0,109.084498 0.62515427,110.300364 1.60359504,111.099847 C5.86639669,115.049818 14.6638678,121.136938 28.3917741,121.136938 C47.4373857,121.136938 58.2306777,110.342144 58.2306777,95.7375885 C58.2306777,63.9876938 9.98122865,76.6880766 9.98122865,53.8288038" id="Fill-1" fill="#2EAC66" mask="url(#mask-2)"></path>
|
||||
<path d="M253.743251,9.82960766 C219.640837,9.82960766 191.384289,38.0912344 191.384289,74.1494163 C191.384289,110.208306 219.640837,138.469933 253.743251,138.469933 C287.845664,138.469933 316.101504,110.208306 316.101504,74.1494163 C316.101504,38.0912344 287.845664,9.82960766 253.743251,9.82960766 Z M253.743251,148 C214.774829,148 181.958832,115.177282 181.958832,74.1494163 C181.958832,33.1222584 214.774829,0.29954067 253.743251,0.29954067 C292.711672,0.29954067 325.526961,33.1222584 325.526961,74.1494163 C325.526961,115.177282 292.711672,148 253.743251,148 Z" id="Fill-3" fill="#2EAC66" mask="url(#mask-2)"></path>
|
||||
</g>
|
||||
<g id="Group-9" transform="translate(358.950413, 29.741627)" fill="#2EAC66">
|
||||
<path d="M51.2364545,81.2357129 L10.2254848,81.2357129 C10.085303,81.2357129 9.9713168,81.1209952 9.9713168,80.9807847 L9.9713168,5.67215311 C9.9713168,3.04214354 7.83885399,0.909952153 5.21009091,0.909952153 C2.57991185,0.909952153 0.448157025,3.04214354 0.448157025,5.67215311 L0.448157025,85.6806699 C0.448157025,88.1357703 2.43760606,90.1249187 4.89220386,90.1249187 L51.2364545,90.1249187 C53.6910523,90.1249187 55.6812094,88.1357703 55.6812094,85.6806699 C55.6812094,83.2255694 53.6910523,81.2357129 51.2364545,81.2357129" id="Fill-6"></path>
|
||||
<path d="M98.7920744,56.4715598 L115.933196,14.562067 L133.074317,56.4715598 L98.7920744,56.4715598 Z M154.513639,83.6440766 L121.740121,4.51647847 C120.766636,2.16759809 118.475584,0.635904306 115.933196,0.635904306 C113.391515,0.635904306 111.099755,2.16759809 110.126978,4.51647847 L77.3520441,83.6440766 C76.073416,86.7301244 78.3418127,90.1249187 81.6821047,90.1249187 C83.5837631,90.1249187 85.2963884,88.9763254 86.0178292,87.2173206 L95.1622149,65.304823 L136.905245,65.4627368 L145.848562,87.2173206 C146.570003,88.9763254 148.283336,90.1249187 150.184287,90.1249187 C153.524579,90.1249187 155.792267,86.7301244 154.513639,83.6440766 Z" id="Fill-8"></path>
|
||||
</g>
|
||||
<path d="M158.690774,112.844689 L126.835518,67.7981627 L153.958576,38.1061053 C156.568931,35.2487847 154.541959,30.6515789 150.672799,30.6515789 C149.420366,30.6515789 148.226697,31.1784306 147.383482,32.1039617 L102.710793,81.1330335 L102.710793,35.1029091 C102.710793,35.1029091 102.702298,35.118488 102.696634,35.1298182 C102.548664,32.6322297 100.482752,30.6515789 97.9495675,30.6515789 C95.4156749,30.6515789 93.3497631,32.6322297 93.2025014,35.1298182 C93.1961295,35.1191962 93.1876336,35.1029091 93.1876336,35.1029091 L93.1876336,115.105053 C93.1876336,117.735062 95.3193884,119.866545 97.9495675,119.866545 C100.579039,119.866545 102.710793,117.735062 102.710793,115.105053 C102.710793,115.104344 102.710793,115.104344 102.710793,115.104344 L102.716457,93.7760574 L120.486273,74.7831962 L150.899355,117.97866 C151.733366,119.16266 153.090581,119.866545 154.538419,119.866545 L155.056667,119.866545 C158.66741,119.866545 160.775802,115.792651 158.690774,112.844689" id="Fill-10" fill="#2EAC66"></path>
|
||||
<path d="M247.88889,93.6167273 L225.00527,93.6167273 L241.05892,76.9897416 C246.619466,71.2913876 249.708421,67.170756 249.708421,61.1983541 C249.708421,53.7147943 243.942559,47.1234833 234.262934,47.1234833 C227.088882,47.1234833 221.706749,51.3234258 219.179229,56.7604785 C218.947008,57.2540478 218.86559,57.8325933 218.997275,58.4373397 C219.209672,59.416689 220.013948,60.199177 220.998052,60.3896651 C222.190306,60.6205167 223.274945,60.029933 223.786113,59.083866 C223.813017,59.0328804 223.839212,58.9804785 223.863284,58.9280766 C225.832909,54.8201914 229.443653,52.0662584 234.262934,52.0662584 C240.166854,52.0662584 244.559926,56.0488038 244.559926,61.1983541 C244.559926,65.5236364 241.813636,69.0253589 237.901289,73.1445742 L218.372829,93.6740861 C218.343094,93.705244 218.277251,93.7803062 218.247515,93.8128804 C217.80219,94.3050335 217.487135,94.9543923 217.487135,95.6696077 C217.487135,96.9428325 218.402565,97.9986603 219.610394,98.2252632 C219.764736,98.2571292 219.924741,98.2734163 220.088287,98.2734163 L247.88889,98.2734163 C249.174598,98.2734163 250.217466,97.2310431 250.217466,95.9450718 C250.217466,94.6598086 249.174598,93.6167273 247.88889,93.6167273" id="Fill-11" fill="#121614"></path>
|
||||
<path d="M261.272006,82.1867368 L278.624815,58.0570718 L278.55968,82.1867368 L261.272006,82.1867368 Z M290.607529,82.2759617 L283.708884,82.2759617 L283.708884,50.1783732 C283.708884,48.8704498 282.648317,47.8096651 281.340661,47.8096651 L281.077997,47.8096651 C280.316201,47.8096651 279.601132,48.1764785 279.155807,48.7946794 C279.155807,48.7946794 255.19038,82.092555 254.91214,82.4799043 C254.634609,82.8679617 254.166628,83.508823 254.166628,84.6446699 C254.166628,85.9950813 255.526675,87.013378 256.834331,87.013378 L278.55968,87.013378 L278.55968,95.6986411 C278.55968,97.1205742 279.712287,98.2734163 281.134636,98.2734163 C282.556278,98.2734163 283.708884,97.1205742 283.708884,95.6986411 L283.708884,87.013378 L290.607529,87.013378 C291.915893,87.013378 292.975752,85.9533014 292.975752,84.6446699 C292.975752,83.3367464 291.915893,82.2759617 290.607529,82.2759617 Z" id="Fill-12" fill="#121614"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 7.1 KiB |
630
src/assets/main.css
Executable file
630
src/assets/main.css
Executable file
|
@ -0,0 +1,630 @@
|
|||
/*
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
@import './base.css';
|
||||
@import './spinner.css';
|
||||
@import './squircles.css';
|
||||
|
||||
:root {
|
||||
--primary: #2c2c2c;
|
||||
--primary-hover-link: #37ff05;
|
||||
--primary-button: #0059ff;
|
||||
--primary-hover-button: #0077ff;
|
||||
--primary-border: #686868;
|
||||
--field: #252525;
|
||||
--negative: #ff0000;
|
||||
--negative-transparent: #ff000080;
|
||||
--negative-hover: #ff4b4b;
|
||||
--positive: #06c000;
|
||||
--positive-hover: #079e02;
|
||||
--positive-transparent: #06c00080;
|
||||
--foreground: #ffffff;
|
||||
--foreground-alt: #ffffff;
|
||||
--background: #3f3f3f;
|
||||
--background-alt: #292929;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
}
|
||||
::-webkit-scrollbar-track {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #888;
|
||||
}
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: #555;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
|
||||
#app {
|
||||
background-color: var(--background);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
main {
|
||||
color: var(--foreground);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: var(--primary-button);
|
||||
}
|
||||
a:visited {
|
||||
color: var(--primary-hover-button)
|
||||
}
|
||||
|
||||
.page-container {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.card-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.card {
|
||||
background-color: var(--primary);
|
||||
padding:10px 20px;
|
||||
border:1px solid var(--primary-border);
|
||||
border-radius:15px;
|
||||
z-index: 1;
|
||||
/*box-shadow: 5px 5px 10px #0000005b;*/
|
||||
}
|
||||
.card.shadow {
|
||||
box-shadow: 5px 5px 10px #0000005b;
|
||||
}
|
||||
.card.wide {
|
||||
min-width: 1200px;
|
||||
}
|
||||
.card.margin {
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
.card-logo {
|
||||
width: 200px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.card-logo.skola24 {
|
||||
margin-top: 0px;
|
||||
}
|
||||
.card-logo.schoolsoft {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 27px;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
font-size: 28px;
|
||||
text-align: center;
|
||||
}
|
||||
.card-header.big {
|
||||
font-size: 35px;
|
||||
margin: 20px;
|
||||
}
|
||||
.card-header.error {
|
||||
color: var(--negative);
|
||||
}
|
||||
|
||||
.card-subbox {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
background-color: var(--background);
|
||||
border-radius: 5px;
|
||||
padding: 10px;
|
||||
}
|
||||
.card-subbox.center {
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.card-subbox-item {
|
||||
padding: 0;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.card-form-row {
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
margin-right: -5px;
|
||||
margin-left: -5px;
|
||||
}
|
||||
.card-form-row.compact {
|
||||
flex-direction: row;
|
||||
gap:20px;
|
||||
width:50%;
|
||||
margin:0 auto;
|
||||
}
|
||||
.card-form-row.center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.card-form-group {
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-ms-flex: 0 0 auto;
|
||||
flex: 0 0 auto;
|
||||
-ms-flex-flow: row wrap;
|
||||
flex-flow: row wrap;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.card-form-group.center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.card-form-label {
|
||||
font-size:17px;
|
||||
font-weight: 700;
|
||||
position: relative;
|
||||
top: 0.5rem;
|
||||
margin: 0 0 0 7px;
|
||||
border:1px solid var(--primary-border);
|
||||
border-radius: 5px;
|
||||
padding: 0 3px;
|
||||
background-color: var(--background);
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.card-form-control {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
padding: .375rem .75rem;
|
||||
font-size: 1rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.5;
|
||||
color: var(--foreground);
|
||||
background-color: var(--field);
|
||||
background-clip:padding-box;
|
||||
border: 1px solid var(--primary-border);
|
||||
border-radius: 5px;
|
||||
box-shadow: inset 2px 5px 10px rgba(0, 0, 0, 0.4);
|
||||
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out
|
||||
}
|
||||
.card-form-control.center {
|
||||
text-align: center;
|
||||
}
|
||||
.card-form-control.invalid {
|
||||
border-color: var(--negative);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.card-form-button {
|
||||
background-color: var(--primary-button);
|
||||
border: none;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
border-radius: 5px;
|
||||
padding: 8px 15px;
|
||||
font-size: 16px;
|
||||
color: var(--foreground);
|
||||
}
|
||||
.card-form-button:hover {
|
||||
background-color: var(--primary-hover-button);
|
||||
cursor: pointer;
|
||||
}
|
||||
.card-form-button.shadow {
|
||||
box-shadow: 5px 5px 10px #0000005b;
|
||||
}
|
||||
|
||||
.card-form-button.negative {
|
||||
background-color: var(--negative);
|
||||
}
|
||||
.card-form-button.negative:hover {
|
||||
background-color: var(--negative-hover);
|
||||
}
|
||||
|
||||
.card-form-button-link {
|
||||
border: none;
|
||||
margin: 20px;
|
||||
color:var(--primary-button);
|
||||
font-size: 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.card-form-button-link:hover {
|
||||
color:var(--primary-hover-button);
|
||||
}
|
||||
|
||||
.card-table {
|
||||
overflow:scroll;
|
||||
}
|
||||
|
||||
.card-table-body {
|
||||
border:1px solid var(--primary-border);
|
||||
}
|
||||
|
||||
.card-table-row {
|
||||
background-color: var(--background);
|
||||
}
|
||||
|
||||
.card-list-button {
|
||||
background-color: var(--primary-button);
|
||||
border: none;
|
||||
margin-top: 5px;
|
||||
border-radius: 5px;
|
||||
padding: 2px 5px;
|
||||
font-size: 15px;
|
||||
color: var(--foreground);
|
||||
}
|
||||
.card-list-button:hover {
|
||||
background-color: var(--primary-hover-button);
|
||||
}
|
||||
|
||||
.card-list-button.negative {
|
||||
background-color: var(--negative);
|
||||
}
|
||||
.card-list-button.negative:hover {
|
||||
background-color: var(--negative-hover);
|
||||
}
|
||||
|
||||
.text-negative {
|
||||
color: var(--negative);
|
||||
}
|
||||
|
||||
.invalid-feedback {
|
||||
color: var(--negative);
|
||||
}
|
||||
|
||||
.alert-container {
|
||||
position: fixed;
|
||||
top: 50px;
|
||||
left: 0px;
|
||||
z-index: 999;
|
||||
}
|
||||
.alert-container.no-nav{
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
/* The animation code */
|
||||
@keyframes alert-entry {
|
||||
from {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
to {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
@keyframes alert-exit {
|
||||
from {
|
||||
transform: translateX(0);
|
||||
}
|
||||
to {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
}
|
||||
|
||||
.alert {
|
||||
background-color: var(--primary-button);
|
||||
color: var(--foreground);
|
||||
border: 1px solid var(--foreground);
|
||||
border-radius: 10px;
|
||||
padding: 5px 10px;
|
||||
margin: 10px;
|
||||
width: fit-content;
|
||||
animation: alert-entry 0.5s ease;
|
||||
}
|
||||
.alert.alert-danger {
|
||||
background-color: var(--negative-transparent);
|
||||
border: 1px solid var(--negative);
|
||||
}
|
||||
.alert.alert-success {
|
||||
background-color: var(--positive-transparent);
|
||||
border: 1px solid var(--positive);
|
||||
}
|
||||
.alert.exit-animation {
|
||||
animation: alert-exit 0.5s ease;
|
||||
}
|
||||
|
||||
.alert-button {
|
||||
background-color: var(--foreground);
|
||||
color: var(--background-alt);
|
||||
text-decoration: none;
|
||||
border: none;
|
||||
padding: 2px;
|
||||
margin: 4px;
|
||||
}
|
||||
.alert-button:hover {
|
||||
background-color: var(--foreground-alt);
|
||||
}
|
||||
|
||||
.title {
|
||||
color: var(--foreground);
|
||||
font-size: 45px;
|
||||
font-weight: bold;
|
||||
text-shadow: 2px 2px 4px #000000;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-color: var(--primary);
|
||||
color: var(--foreground);
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 1000;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 10px 20px;
|
||||
}
|
||||
|
||||
.navbar-logo {
|
||||
font-size: 24px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.navbar-menu {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.menu-icon {
|
||||
font-size: 24px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.navbar-items {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.navbar-links {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.navbar-icons {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
padding-top: 2px;
|
||||
}
|
||||
|
||||
.navbar-icons a {
|
||||
text-align: center;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.navbar-icons a:hover {
|
||||
color: var(--primary-hover-button);
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* This is needed to prevent nav from being consumed by the void, it wasn't needed before. Why? */
|
||||
*, ::after, ::before {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.navbar-links a {
|
||||
color: var(--foreground);
|
||||
border-radius: 5px;
|
||||
padding: 5px 10px;
|
||||
font-size:15px;
|
||||
text-decoration: none;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.navbar-links a:hover {
|
||||
background-color: var(--primary-hover-button);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.content-wrapper {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.content-padding {
|
||||
height: 34px;
|
||||
}
|
||||
|
||||
.content-spacer-smaller {
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
.content-spacer-small {
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.content-spacer-normal {
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
.content-spacer-large {
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
.content-spacer-larger {
|
||||
height: 300px;
|
||||
}
|
||||
|
||||
.content-block-full {
|
||||
padding: 20px;
|
||||
background-color: var(--background);
|
||||
font-size:17px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
position: relative;
|
||||
background-color: var(--primary);;
|
||||
color: var(--foreground-alt);
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 100px;
|
||||
}
|
||||
|
||||
.footer-logo {
|
||||
font-size: 24px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.footer-contact-info {
|
||||
text-align: center;
|
||||
max-width: 300px;
|
||||
}
|
||||
|
||||
.footer-social-icons {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.footer-social-icons a {
|
||||
color: var(--foreground);
|
||||
transition: 200ms;
|
||||
}
|
||||
|
||||
.footer-social-icons a:hover {
|
||||
color: var(--primary-hover-button);
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
.navbar-links {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.navbar-menu {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
padding-top: 2px;
|
||||
}
|
||||
|
||||
.content-padding {
|
||||
height: 55px;
|
||||
}
|
||||
|
||||
.card-container {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.card {
|
||||
width: 400px;
|
||||
}
|
||||
.card.wide {
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.side-menu {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: -250px;
|
||||
width: 250px;
|
||||
height: 100%;
|
||||
background-color: var(--background-alt);
|
||||
transition: right 0.3s ease;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.side-menu.open {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.side-menu-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 20px;
|
||||
padding-top: 70px;
|
||||
}
|
||||
|
||||
.side-menu-button {
|
||||
display: block;
|
||||
padding: 10px 20px;
|
||||
background-color: var(--primary);;
|
||||
color: var(--foreground);
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
text-decoration: none;
|
||||
font-size: 17px;
|
||||
cursor: pointer;
|
||||
margin-bottom: 10px;
|
||||
text-align: center;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.side-menu-button:link {
|
||||
color: var(--foreground);
|
||||
}
|
||||
|
||||
.side-menu-button:visited {
|
||||
color: var(--foreground);
|
||||
}
|
||||
|
||||
.side-menu-button:hover {
|
||||
background-color: var(--primary-hover-button);
|
||||
color:var(--foreground);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.side-menu-button.negative:hover {
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
.card {
|
||||
min-width:fit-content;
|
||||
}
|
||||
|
||||
.card-form-row.compact {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
123
src/assets/spinner.css
Executable file
123
src/assets/spinner.css
Executable file
|
@ -0,0 +1,123 @@
|
|||
/*
|
||||
This CSS file is NOT covered by the AGPL licensing of this software.
|
||||
The copyright holder of this software is not the creator of this CSS file.
|
||||
This CSS file is an exception to the licensing and copyright of this software.
|
||||
Please see the source for more details.
|
||||
|
||||
source: https://uiverse.io/abrahamcalsin/serious-turkey-52
|
||||
*/
|
||||
|
||||
.spinner-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.dot-spinner {
|
||||
--uib-size: 2.8rem;
|
||||
--uib-speed: .9s;
|
||||
--uib-color: #ffffff;
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
height: var(--uib-size);
|
||||
width: var(--uib-size);
|
||||
}
|
||||
|
||||
.dot-spinner__dot {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.dot-spinner__dot::before {
|
||||
content: '';
|
||||
height: 20%;
|
||||
width: 20%;
|
||||
border-radius: 50%;
|
||||
background-color: var(--uib-color);
|
||||
transform: scale(0);
|
||||
opacity: 0.5;
|
||||
animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
|
||||
box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
|
||||
}
|
||||
|
||||
.dot-spinner__dot:nth-child(2) {
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
|
||||
.dot-spinner__dot:nth-child(2)::before {
|
||||
animation-delay: calc(var(--uib-speed) * -0.875);
|
||||
}
|
||||
|
||||
.dot-spinner__dot:nth-child(3) {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.dot-spinner__dot:nth-child(3)::before {
|
||||
animation-delay: calc(var(--uib-speed) * -0.75);
|
||||
}
|
||||
|
||||
.dot-spinner__dot:nth-child(4) {
|
||||
transform: rotate(135deg);
|
||||
}
|
||||
|
||||
.dot-spinner__dot:nth-child(4)::before {
|
||||
animation-delay: calc(var(--uib-speed) * -0.625);
|
||||
}
|
||||
|
||||
.dot-spinner__dot:nth-child(5) {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.dot-spinner__dot:nth-child(5)::before {
|
||||
animation-delay: calc(var(--uib-speed) * -0.5);
|
||||
}
|
||||
|
||||
.dot-spinner__dot:nth-child(6) {
|
||||
transform: rotate(225deg);
|
||||
}
|
||||
|
||||
.dot-spinner__dot:nth-child(6)::before {
|
||||
animation-delay: calc(var(--uib-speed) * -0.375);
|
||||
}
|
||||
|
||||
.dot-spinner__dot:nth-child(7) {
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.dot-spinner__dot:nth-child(7)::before {
|
||||
animation-delay: calc(var(--uib-speed) * -0.25);
|
||||
}
|
||||
|
||||
.dot-spinner__dot:nth-child(8) {
|
||||
transform: rotate(315deg);
|
||||
}
|
||||
|
||||
.dot-spinner__dot:nth-child(8)::before {
|
||||
animation-delay: calc(var(--uib-speed) * -0.125);
|
||||
}
|
||||
|
||||
@keyframes pulse0112 {
|
||||
0%,
|
||||
100% {
|
||||
transform: scale(0);
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: scale(1);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.spinner-center {
|
||||
align-items: center;
|
||||
}
|
||||
|
139
src/assets/squircles.css
Executable file
139
src/assets/squircles.css
Executable file
|
@ -0,0 +1,139 @@
|
|||
/*
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
.squircles{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.squircles li{
|
||||
position: absolute;
|
||||
display: block;
|
||||
list-style: none;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
animation: animate 25s linear infinite;
|
||||
bottom: -150px;
|
||||
|
||||
}
|
||||
|
||||
.squircles li:nth-child(1){
|
||||
left: 25%;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
animation-delay: 0s;
|
||||
}
|
||||
|
||||
|
||||
.squircles li:nth-child(2){
|
||||
left: 10%;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
animation-delay: 2s;
|
||||
animation-duration: 12s;
|
||||
}
|
||||
|
||||
.squircles li:nth-child(3){
|
||||
left: 70%;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
animation-delay: 4s;
|
||||
}
|
||||
|
||||
.squircles li:nth-child(4){
|
||||
left: 40%;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
animation-delay: 0s;
|
||||
animation-duration: 18s;
|
||||
}
|
||||
|
||||
.squircles li:nth-child(5){
|
||||
left: 65%;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
animation-delay: 0s;
|
||||
}
|
||||
|
||||
.squircles li:nth-child(6){
|
||||
left: 75%;
|
||||
width: 110px;
|
||||
height: 110px;
|
||||
animation-delay: 3s;
|
||||
}
|
||||
|
||||
.squircles li:nth-child(7){
|
||||
left: 35%;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
animation-delay: 7s;
|
||||
}
|
||||
|
||||
.squircles li:nth-child(8){
|
||||
left: 50%;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
animation-delay: 15s;
|
||||
animation-duration: 45s;
|
||||
}
|
||||
|
||||
.squircles li:nth-child(9){
|
||||
left: 20%;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
animation-delay: 2s;
|
||||
animation-duration: 35s;
|
||||
}
|
||||
|
||||
.squircles li:nth-child(10){
|
||||
left: 85%;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
animation-delay: 0s;
|
||||
animation-duration: 11s;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@keyframes animate {
|
||||
|
||||
0%{
|
||||
transform: translateY(0) rotate(0deg);
|
||||
opacity: 1;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
100%{
|
||||
transform: translateY(-1000px) rotate(720deg);
|
||||
opacity: 0;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
}
|
56
src/components/Alert.vue
Executable file
56
src/components/Alert.vue
Executable file
|
@ -0,0 +1,56 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import { storeToRefs } from 'pinia';
|
||||
import { useAlertStore, useAuthStore } from '@/stores';
|
||||
|
||||
const alertStore = useAlertStore();
|
||||
const { alerts } = storeToRefs(alertStore);
|
||||
|
||||
const authStore = useAuthStore();
|
||||
const { user } = storeToRefs(authStore);
|
||||
|
||||
function removeAlert(index) {
|
||||
alertStore.removeSpecific(index)
|
||||
}
|
||||
|
||||
// Function to get the percentage of remaining time
|
||||
const getRemainingTimePercentage = (timeout) => {
|
||||
if (timeout <= 0) return 100; // No progress if no timeout
|
||||
const remainingTime = Math.max(0, timeout - new Date().getTime());
|
||||
return (remainingTime / timeout) * 100;
|
||||
};
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="alert-container" :class="{ 'no-nav': !user }">
|
||||
<div v-for="(alert, index) in alerts" :key="index">
|
||||
<div class="alert" :class="alert.type">
|
||||
<button @click="removeAlert(index)" class="alert-button">×</button>
|
||||
{{ alert.message }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
38
src/components/Spinner.vue
Executable file
38
src/components/Spinner.vue
Executable file
|
@ -0,0 +1,38 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<template>
|
||||
<div class="spinner-container">
|
||||
<div class="dot-spinner">
|
||||
<div class="dot-spinner__dot"></div>
|
||||
<div class="dot-spinner__dot"></div>
|
||||
<div class="dot-spinner__dot"></div>
|
||||
<div class="dot-spinner__dot"></div>
|
||||
<div class="dot-spinner__dot"></div>
|
||||
<div class="dot-spinner__dot"></div>
|
||||
<div class="dot-spinner__dot"></div>
|
||||
<div class="dot-spinner__dot"></div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
38
src/components/Squircles.vue
Executable file
38
src/components/Squircles.vue
Executable file
|
@ -0,0 +1,38 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<template>
|
||||
<ul class="squircles">
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
</ul>
|
||||
</template>
|
27
src/components/index.ts
Executable file
27
src/components/index.ts
Executable file
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
export { default as Alert } from './Alert.vue';
|
||||
export { default as Spinner } from './Spinner.vue';
|
||||
export { default as Squircles } from './Squircles.vue';
|
29
src/helpers/config-loader.ts
Executable file
29
src/helpers/config-loader.ts
Executable file
|
@ -0,0 +1,29 @@
|
|||
const configUrl = `${window.location.origin}/config.json`; // Get the base URL dynamically
|
||||
|
||||
let apiUrl: string | null = null; // Store the API URL
|
||||
|
||||
export const getApiUrl = (): string => {
|
||||
if (apiUrl) {
|
||||
// If the API URL has already been fetched, return it immediately
|
||||
return apiUrl!;
|
||||
}
|
||||
|
||||
try {
|
||||
const xhr = new XMLHttpRequest();
|
||||
xhr.open('GET', configUrl, false); // Synchronous XHR request
|
||||
xhr.send();
|
||||
|
||||
if (xhr.status !== 200) {
|
||||
throw new Error(`Network response was not ok: ${xhr.status}`);
|
||||
}
|
||||
|
||||
const configData = JSON.parse(xhr.responseText);
|
||||
apiUrl = configData.apiUrl; // Cache the API URL
|
||||
return apiUrl!;
|
||||
} catch (error) {
|
||||
throw error;
|
||||
}
|
||||
};
|
||||
|
||||
// Call the function to initialize the apiUrl
|
||||
getApiUrl();
|
60
src/helpers/fetch-wrapper.js
Executable file
60
src/helpers/fetch-wrapper.js
Executable file
|
@ -0,0 +1,60 @@
|
|||
import { useAuthStore } from '@/stores';
|
||||
import { getApiUrl } from './config-loader';
|
||||
|
||||
// TODO: Rewrite to TypeScript
|
||||
|
||||
export const fetchWrapper = {
|
||||
get: request('GET'),
|
||||
post: request('POST'),
|
||||
put: request('PUT'),
|
||||
delete: request('DELETE')
|
||||
};
|
||||
|
||||
function request(method) {
|
||||
return (url, body) => {
|
||||
const requestOptions = {
|
||||
method,
|
||||
headers: authHeader(url)
|
||||
};
|
||||
if (body) {
|
||||
requestOptions.headers['Content-Type'] = 'application/json';
|
||||
requestOptions.body = JSON.stringify(body);
|
||||
}
|
||||
return fetch(url, requestOptions).then(handleResponse);
|
||||
}
|
||||
}
|
||||
|
||||
// helper functions
|
||||
|
||||
function authHeader(url) {
|
||||
// return auth header with jwt if user is logged in and request is to the api url
|
||||
const { user } = useAuthStore();
|
||||
const isLoggedIn = !!user?.token;
|
||||
const apiUrl = getApiUrl();
|
||||
const isApiUrl = url.startsWith(apiUrl);
|
||||
if (isLoggedIn && isApiUrl) {
|
||||
return { Authorization: `Bearer ${user.token}` };
|
||||
} else {
|
||||
return {};
|
||||
}
|
||||
}
|
||||
|
||||
async function handleResponse(response) {
|
||||
const isJson = response.headers?.get('content-type')?.includes('application/json');
|
||||
const data = isJson ? await response.json() : null;
|
||||
|
||||
// check for error response
|
||||
if (!response.ok) {
|
||||
const { user, logout } = useAuthStore();
|
||||
if ([401, 403].includes(response.status) && user) {
|
||||
// auto logout if 401 Unauthorized or 403 Forbidden response returned from api
|
||||
logout();
|
||||
}
|
||||
|
||||
// get error message from body or default to response status
|
||||
const error = (data && data.message) || response.status;
|
||||
return Promise.reject(error);
|
||||
}
|
||||
|
||||
return data;
|
||||
}
|
16
src/helpers/get-status.js
Executable file
16
src/helpers/get-status.js
Executable file
|
@ -0,0 +1,16 @@
|
|||
// TODO: Rewrite to TypeScript
|
||||
|
||||
export async function getStatus(url) {
|
||||
try {
|
||||
const response = await fetch(url);
|
||||
const isSuccessful = response.ok;
|
||||
|
||||
if (isSuccessful) {
|
||||
if (!isNaN(response.status)) {
|
||||
return "error"
|
||||
} else return response.status
|
||||
}
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
}
|
||||
}
|
3
src/helpers/index.ts
Executable file
3
src/helpers/index.ts
Executable file
|
@ -0,0 +1,3 @@
|
|||
export * from './config-loader';
|
||||
export * from './fetch-wrapper';
|
||||
export * from './get-status';
|
38
src/main.ts
Executable file
38
src/main.ts
Executable file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import './assets/main.css'
|
||||
|
||||
import { createApp } from 'vue';
|
||||
import { createPinia } from 'pinia';
|
||||
|
||||
import App from './App.vue';
|
||||
import { router } from './router';
|
||||
|
||||
const app = createApp(App);
|
||||
|
||||
app.use(createPinia());
|
||||
app.use(router);
|
||||
|
||||
app.mount('#app');
|
35
src/router/account.routes.ts
Executable file
35
src/router/account.routes.ts
Executable file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { Layout, Login, Register } from '@/views/account';
|
||||
|
||||
export default {
|
||||
path: '/account',
|
||||
component: Layout,
|
||||
children: [
|
||||
{ path: '', redirect: 'login' },
|
||||
{ path: 'login', component: Login },
|
||||
{ path: 'register', component: Register }
|
||||
]
|
||||
};
|
38
src/router/admin.routes.ts
Executable file
38
src/router/admin.routes.ts
Executable file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { Layout, List, AddEdit } from '@/views/admin/users';
|
||||
import { Dashboard } from '@/views/admin';
|
||||
|
||||
export default {
|
||||
path: '/admin',
|
||||
component: Layout,
|
||||
children: [
|
||||
{ path: '', redirect: 'dashboard' },
|
||||
{ path: 'dashboard', component: Dashboard },
|
||||
{ path: 'users', component: List },
|
||||
{ path: 'users/add', component: AddEdit },
|
||||
{ path: 'users/edit/:id', component: AddEdit }
|
||||
]
|
||||
};
|
66
src/router/index.ts
Executable file
66
src/router/index.ts
Executable file
|
@ -0,0 +1,66 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { createRouter, createWebHistory } from 'vue-router';
|
||||
|
||||
import { useAuthStore, useAlertStore } from '@/stores';
|
||||
import { Home } from '@/views';
|
||||
import accountRoutes from './account.routes';
|
||||
import adminRoutes from './admin.routes';
|
||||
import scheduleRoutes from './schedule.routes';
|
||||
|
||||
export const router = createRouter({
|
||||
history: createWebHistory(import.meta.env.BASE_URL),
|
||||
linkActiveClass: 'active',
|
||||
routes: [
|
||||
{ path: '/', component: Home },
|
||||
{ ...accountRoutes },
|
||||
{ ...adminRoutes },
|
||||
{ ...scheduleRoutes },
|
||||
// catch all redirect to home page
|
||||
{ path: '/:pathMatch(.*)*', redirect: '/' }
|
||||
]
|
||||
});
|
||||
|
||||
router.beforeEach(async (to) => {
|
||||
// clear alert on route change
|
||||
const alertStore = useAlertStore();
|
||||
alertStore.clear();
|
||||
|
||||
// redirect to login page if not logged in and trying to access a user-only page
|
||||
const publicPages = ['/account/login', '/account/register'];
|
||||
const authRequired = !publicPages.includes(to.path);
|
||||
const authStore = useAuthStore();
|
||||
|
||||
if (authRequired && !authStore.user) {
|
||||
authStore.returnUrl = to.fullPath;
|
||||
return '/account/login';
|
||||
}
|
||||
|
||||
// redirect to home page if trying to access a restricted admin page
|
||||
// will update at some point for the eventual permission system
|
||||
if (to.path.startsWith('/admin') && authStore.user.role != 'admin') {
|
||||
return '/';
|
||||
}
|
||||
});
|
37
src/router/schedule.routes.ts
Executable file
37
src/router/schedule.routes.ts
Executable file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { Layout, Schedule } from '@/views/schedule';
|
||||
import { Add, SchoolSoft, Skola24 } from '@/views/schedule/add';
|
||||
|
||||
export default {
|
||||
path: '/schedule',
|
||||
component: Layout,
|
||||
children: [
|
||||
{ path: '', component: Schedule },
|
||||
{ path: 'add', component: Add },
|
||||
{ path: 'add/schoolsoft', component: SchoolSoft },
|
||||
{ path: 'add/skola24', component: Skola24 }
|
||||
]
|
||||
};
|
87
src/stores/alert.store.js
Executable file
87
src/stores/alert.store.js
Executable file
|
@ -0,0 +1,87 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { defineStore } from 'pinia';
|
||||
|
||||
// TODO: Rewrite to typescript
|
||||
|
||||
export const useAlertStore = defineStore({
|
||||
id: 'alert',
|
||||
state: () => ({
|
||||
alerts: [],
|
||||
}),
|
||||
actions: {
|
||||
addAlert(message, type, timeout = 0) {
|
||||
// if more than 10 alerts, remove oldest
|
||||
if (this.alerts.length > 10) {
|
||||
this.alerts.shift();
|
||||
}
|
||||
// define alert and assign unique ID
|
||||
const alert = { message, type, timeout, id: Date.now() };
|
||||
this.alerts.push(alert);
|
||||
// handle timeouts for alerts
|
||||
if (timeout > 0) {
|
||||
const timeoutId = setTimeout(() => {
|
||||
this.removeSpecific(alert.id);
|
||||
}, timeout);
|
||||
alert.timeoutId = timeoutId;
|
||||
}
|
||||
},
|
||||
success(message, timeout = 0) {
|
||||
// add green alert (success)
|
||||
this.addAlert(message, 'alert-success', timeout);
|
||||
},
|
||||
error(message, timeout = 0) {
|
||||
// add red alert (error)
|
||||
this.addAlert(message, 'alert-danger', timeout);
|
||||
},
|
||||
removeOldest() {
|
||||
const oldestAlert = this.alerts.shift();
|
||||
// remove timeout for this alert (avoid errors)
|
||||
if (oldestAlert && oldestAlert.timeoutId) {
|
||||
clearTimeout(oldestAlert.timeoutId);
|
||||
}
|
||||
},
|
||||
removeSpecific(alertId) {
|
||||
// find alert by index
|
||||
const index = this.alerts.findIndex((alert) => alert.id === alertId);
|
||||
if (index !== -1) {
|
||||
const alert = this.alerts[index];
|
||||
this.alerts.splice(index, 1);
|
||||
// remove timeout for this alert (avoid errors)
|
||||
if (alert.timeoutId) {
|
||||
clearTimeout(alert.timeoutId);
|
||||
}
|
||||
}
|
||||
},
|
||||
clear() {
|
||||
for (const alert of this.alerts) {
|
||||
if (alert.timeoutId) {
|
||||
clearTimeout(alert.timeoutId);
|
||||
}
|
||||
}
|
||||
this.alerts = [];
|
||||
},
|
||||
},
|
||||
});
|
68
src/stores/auth.store.js
Executable file
68
src/stores/auth.store.js
Executable file
|
@ -0,0 +1,68 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { defineStore } from 'pinia';
|
||||
|
||||
import { fetchWrapper } from '@/helpers';
|
||||
import { getApiUrl } from '@/helpers';
|
||||
import { router } from '@/router';
|
||||
import { useAlertStore } from '@/stores';
|
||||
|
||||
// TODO: Rewrite to TypeScript
|
||||
|
||||
const apiUrl = getApiUrl();
|
||||
const baseUrl = `${apiUrl}/users`;
|
||||
|
||||
export const useAuthStore = defineStore({
|
||||
id: 'auth',
|
||||
state: () => ({
|
||||
// initialize state from local storage to enable user to stay logged in
|
||||
user: JSON.parse(localStorage.getItem('user')),
|
||||
returnUrl: ""
|
||||
}),
|
||||
actions: {
|
||||
async login(username, password) {
|
||||
try {
|
||||
const user = await fetchWrapper.post(`${baseUrl}/authenticate`, { username, password });
|
||||
|
||||
// update pinia state
|
||||
this.user = user;
|
||||
|
||||
// store user details and jwt in local storage to keep user logged in between page refreshes
|
||||
localStorage.setItem('user', JSON.stringify(user));
|
||||
|
||||
// redirect to previous url or default to home page
|
||||
router.push(this.returnUrl || '/');
|
||||
} catch (error) {
|
||||
const alertStore = useAlertStore();
|
||||
alertStore.error(error, 5000);
|
||||
}
|
||||
},
|
||||
logout() {
|
||||
this.user = null;
|
||||
localStorage.removeItem('user');
|
||||
router.push('/account/login');
|
||||
}
|
||||
}
|
||||
});
|
29
src/stores/index.ts
Executable file
29
src/stores/index.ts
Executable file
|
@ -0,0 +1,29 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
export * from './alert.store';
|
||||
export * from './auth.store';
|
||||
export * from './users.store';
|
||||
export * from './schedules.store';
|
||||
export * from './providers.store';
|
110
src/stores/providers.store.js
Executable file
110
src/stores/providers.store.js
Executable file
|
@ -0,0 +1,110 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { defineStore } from 'pinia';
|
||||
|
||||
import { fetchWrapper } from '@/helpers';
|
||||
import { getApiUrl } from '@/helpers';
|
||||
import { useAlertStore } from '@/stores';
|
||||
|
||||
// TODO: Rewrite to TypeScript
|
||||
|
||||
const apiUrl = getApiUrl();
|
||||
const baseUrl = `${apiUrl}/providers`;
|
||||
|
||||
export const useProvidersStore = defineStore({
|
||||
id: 'providers',
|
||||
state: () => ({
|
||||
host: {},
|
||||
provider: {},
|
||||
terms: {},
|
||||
schools: [],
|
||||
classes: {},
|
||||
schedule: {},
|
||||
}),
|
||||
actions: {
|
||||
async setHost(host) {
|
||||
// set current target host
|
||||
this.host = host;
|
||||
},
|
||||
async setProvider(provider) {
|
||||
// set the chosen provider for the data
|
||||
if (!["skola24", "schoolsoft"].includes(provider)) {
|
||||
alertStore = useAlertStore();
|
||||
alertStore.addAlert('Invalid value for provider');
|
||||
} else {
|
||||
this.provider = provider;
|
||||
}
|
||||
},
|
||||
async getTerms() {
|
||||
const body = {"provider": this.provider, "host": this.host};
|
||||
this.terms = { loading: true };
|
||||
try {
|
||||
// get available terms for target host
|
||||
this.terms = JSON.parse(await fetchWrapper.post(`${baseUrl}/terms`, body));
|
||||
} catch (error) {
|
||||
this.terms = { error };
|
||||
const alertStore = useAlertStore();
|
||||
alertStore.error(error, 10000);
|
||||
}
|
||||
},
|
||||
async getSchools() {
|
||||
const body = {"provider": this.provider, "host": this.host};
|
||||
this.schools = { loading: true };
|
||||
try {
|
||||
// get available schools for target host
|
||||
this.schools = JSON.parse(await fetchWrapper.post(`${baseUrl}/schools`, body));
|
||||
} catch (error) {
|
||||
this.schools = { error };
|
||||
const alertStore = useAlertStore();
|
||||
alertStore.error(error, 10000);
|
||||
}
|
||||
},
|
||||
async getClasses(schoolId) {
|
||||
const body = {"provider": this.provider, "host": this.host, "school": schoolId};
|
||||
this.classes = { loading: true }
|
||||
try {
|
||||
// get available classes for target host
|
||||
this.classes = JSON.parse(await fetchWrapper.post(`${baseUrl}/classes`, body));
|
||||
console.log('Classes: ', this.classes);
|
||||
} catch (error) {
|
||||
this.classes = { error };
|
||||
const alertStore = useAlertStore();
|
||||
alertStore.error(error, 5000);
|
||||
}
|
||||
},
|
||||
async getSchedule(schoolId, classId, termId) {
|
||||
const body = {"provider": this.provider, "host": this.host, "school": schoolId, "class": classId, "term": termId};
|
||||
this.schedule = { loading: true }
|
||||
try {
|
||||
// get available classes for target host
|
||||
this.schedule = JSON.parse(await fetchWrapper.post(`${baseUrl}/schedule`, body));
|
||||
} catch (error) {
|
||||
this.schedule = { error };
|
||||
const alertStore = useAlertStore();
|
||||
alertStore.error(error, 5000);
|
||||
}
|
||||
},
|
||||
}
|
||||
});
|
112
src/stores/schedules.store.js
Executable file
112
src/stores/schedules.store.js
Executable file
|
@ -0,0 +1,112 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { defineStore } from 'pinia';
|
||||
|
||||
import { fetchWrapper } from '@/helpers';
|
||||
import { getApiUrl } from '@/helpers';
|
||||
import { useAlertStore } from '@/stores';
|
||||
|
||||
// TODO: Rewrite to TypeScript
|
||||
|
||||
const apiUrl = getApiUrl();
|
||||
const baseUrl = `${apiUrl}/schedules`;
|
||||
|
||||
export const useSchedulesStore = defineStore({
|
||||
id: 'schedules',
|
||||
state: () => ({
|
||||
schedules: {},
|
||||
schedule: {},
|
||||
}),
|
||||
actions: {
|
||||
async add(schedule) {
|
||||
// add schedule for current user
|
||||
await fetchWrapper.post(`${baseUrl}/add`, schedule);
|
||||
},
|
||||
async getCurrent() {
|
||||
this.schedule = { loading: true };
|
||||
try {
|
||||
// get schedule for current user
|
||||
this.schedule = await fetchWrapper.get(`${baseUrl}/current`);
|
||||
} catch (error) {
|
||||
this.schedule = { error };
|
||||
const alertStore = useAlertStore();
|
||||
alertStore.error(error, 5000);
|
||||
}
|
||||
},
|
||||
async getAll() {
|
||||
this.schedules = { loading: true };
|
||||
try {
|
||||
// get schedules for all users
|
||||
this.schedules = await fetchWrapper.get(baseUrl);
|
||||
} catch (error) {
|
||||
this.schedules = { error };
|
||||
const alertStore = useAlertStore();
|
||||
alertStore.error(error);
|
||||
}
|
||||
},
|
||||
async getById(id) {
|
||||
this.schedule = { loading: true };
|
||||
try {
|
||||
// get specific schedule by ID
|
||||
this.schedule = await fetchWrapper.get(`${baseUrl}/${id}`);
|
||||
} catch (error) {
|
||||
this.schedule = { error };
|
||||
const alertStore = useAlertStore();
|
||||
alertStore.error(error);
|
||||
}
|
||||
},
|
||||
async update(id, params) {
|
||||
this.schedule = { loading: true };
|
||||
try {
|
||||
// update specific schedule by ID
|
||||
await fetchWrapper.put(`${baseUrl}/${id}`, params);
|
||||
} catch (error) {
|
||||
this.schedule = { error };
|
||||
const alertStore = useAlertStore();
|
||||
alertStore.error(error);
|
||||
}
|
||||
},
|
||||
async delete(id) {
|
||||
// add isDeleting prop to schedule being deleted
|
||||
this.schedules.find(x => x.id === id).isDeleting = true;
|
||||
|
||||
// delete schedule
|
||||
await fetchWrapper.delete(`${baseUrl}/${id}`);
|
||||
|
||||
// remove schedule from list after deleted
|
||||
this.schedules = this.schedules.filter(x => x.id !== id);
|
||||
},
|
||||
async deleteCurrent() {
|
||||
// add isDeleting prop to schedule being deleted
|
||||
this.schedule.isDeleting = true;
|
||||
|
||||
// delete schedule
|
||||
await fetchWrapper.delete(`${baseUrl}/current`);
|
||||
|
||||
// remove schedule
|
||||
this.schedule = {};
|
||||
}
|
||||
}
|
||||
});
|
96
src/stores/users.store.js
Executable file
96
src/stores/users.store.js
Executable file
|
@ -0,0 +1,96 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { defineStore } from 'pinia';
|
||||
|
||||
import { fetchWrapper } from '@/helpers';
|
||||
import { getApiUrl } from '@/helpers';
|
||||
import { useAuthStore } from '@/stores';
|
||||
|
||||
// TODO: Rewrite to TypeScript
|
||||
|
||||
const apiUrl = getApiUrl();
|
||||
const baseUrl = `${apiUrl}/users`;
|
||||
|
||||
export const useUsersStore = defineStore({
|
||||
id: 'users',
|
||||
state: () => ({
|
||||
users: {},
|
||||
user: {}
|
||||
}),
|
||||
actions: {
|
||||
async register(user) {
|
||||
await fetchWrapper.post(`${baseUrl}/register`, user);
|
||||
},
|
||||
async add(user) {
|
||||
await fetchWrapper.post(`${baseUrl}/add`, user);
|
||||
},
|
||||
async getAll() {
|
||||
this.users = { loading: true };
|
||||
try {
|
||||
this.users = await fetchWrapper.get(baseUrl);
|
||||
} catch (error) {
|
||||
this.users = { error };
|
||||
}
|
||||
},
|
||||
async getById(id) {
|
||||
this.user = { loading: true };
|
||||
try {
|
||||
this.user = await fetchWrapper.get(`${baseUrl}/${id}`);
|
||||
} catch (error) {
|
||||
this.user = { error };
|
||||
}
|
||||
},
|
||||
async update(id, params) {
|
||||
await fetchWrapper.put(`${baseUrl}/${id}`, params);
|
||||
|
||||
// update stored user if the logged in user updated their own record
|
||||
const authStore = useAuthStore();
|
||||
if (id === authStore.user.id) {
|
||||
// update local storage
|
||||
const user = { ...authStore.user, ...params };
|
||||
localStorage.setItem('user', JSON.stringify(user));
|
||||
|
||||
// update auth user in pinia state
|
||||
authStore.user = user;
|
||||
}
|
||||
},
|
||||
async delete(id) {
|
||||
// add isDeleting prop to user being deleted
|
||||
this.users.find(x => x.id === id).isDeleting = true;
|
||||
|
||||
// delete user
|
||||
await fetchWrapper.delete(`${baseUrl}/${id}`);
|
||||
|
||||
// remove user from list after deleted
|
||||
this.users = this.users.filter(x => x.id !== id);
|
||||
|
||||
// auto logout if the logged in user deleted their own record
|
||||
const authStore = useAuthStore();
|
||||
if (id === authStore.user.id) {
|
||||
authStore.logout();
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
41
src/views/HomeView.vue
Executable file
41
src/views/HomeView.vue
Executable file
|
@ -0,0 +1,41 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import { storeToRefs } from 'pinia';
|
||||
|
||||
import { useAuthStore } from '@/stores';
|
||||
|
||||
const authStore = useAuthStore();
|
||||
const { user } = storeToRefs(authStore);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div v-if="user">
|
||||
<div style="text-align: center;">
|
||||
<h1>Welcome, {{user.firstName}}!</h1>
|
||||
<p>You're logged in sucessfully!!</p>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
43
src/views/account/Layout.vue
Executable file
43
src/views/account/Layout.vue
Executable file
|
@ -0,0 +1,43 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import { useAuthStore } from '@/stores';
|
||||
import { router } from '@/router';
|
||||
|
||||
import { Squircles } from '@/components';
|
||||
|
||||
// redirect home if already logged in
|
||||
const authStore = useAuthStore();
|
||||
if (authStore.user) {
|
||||
router.push('/');
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="page-container">
|
||||
<router-view />
|
||||
<Squircles/>
|
||||
</div>
|
||||
</template>
|
79
src/views/account/LoginView.vue
Executable file
79
src/views/account/LoginView.vue
Executable file
|
@ -0,0 +1,79 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import { Form, Field } from 'vee-validate';
|
||||
import * as Yup from 'yup';
|
||||
|
||||
import { Spinner } from '@/components';
|
||||
|
||||
import { useAuthStore } from '@/stores';
|
||||
|
||||
const schema = Yup.object().shape({
|
||||
username: Yup.string().required('Username is required'),
|
||||
password: Yup.string().required('Password is required')
|
||||
});
|
||||
|
||||
async function onSubmit(values) {
|
||||
const authStore = useAuthStore();
|
||||
const { username, password } = values;
|
||||
await authStore.login(username, password);
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="content-spacer-smaller"></div>
|
||||
<div style="text-align: center;">
|
||||
<a class="title">ScheduleTogether</a>
|
||||
</div>
|
||||
<div class="content-spacer-normal"></div>
|
||||
<div class="card-container">
|
||||
<div class="card shadow">
|
||||
<div style="min-width: 500px;">
|
||||
<h4 class="card-header">Login</h4>
|
||||
<div>
|
||||
<Form @submit="onSubmit" :validation-schema="schema" v-slot="{ errors, isSubmitting }">
|
||||
<div class="card-form-group">
|
||||
<label class="card-form-label">Username</label>
|
||||
<Field name="username" type="text" class="card-form-control" :class="{ 'card-form-control invalid': errors.username }" />
|
||||
<div class="invalid-feedback">{{ errors.username }}</div>
|
||||
</div>
|
||||
<div class="card-form-group">
|
||||
<label class="card-form-label">Password</label>
|
||||
<Field name="password" type="password" class="card-form-control" :class="{ 'card-form-control invalid': errors.password }" />
|
||||
<div class="invalid-feedback">{{ errors.password }}</div>
|
||||
</div>
|
||||
<div class="card-form-group center">
|
||||
<button class="card-form-button" :disabled="isSubmitting">
|
||||
Login
|
||||
</button>
|
||||
<router-link to="register" class="card-form-button-link">Register</router-link>
|
||||
</div>
|
||||
<Spinner v-show="isSubmitting" class="spinner-center" />
|
||||
</Form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
112
src/views/account/RegisterView.vue
Executable file
112
src/views/account/RegisterView.vue
Executable file
|
@ -0,0 +1,112 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import { Form, Field } from 'vee-validate';
|
||||
import * as Yup from 'yup';
|
||||
|
||||
import { Spinner } from '@/components';
|
||||
|
||||
import { useUsersStore, useAlertStore } from '@/stores';
|
||||
import { router } from '@/router';
|
||||
|
||||
const schema = Yup.object().shape({
|
||||
email: Yup.string()
|
||||
.required('Email is required'),
|
||||
firstName: Yup.string()
|
||||
.required('First Name is required'),
|
||||
lastName: Yup.string()
|
||||
.required('Last Name is required'),
|
||||
username: Yup.string()
|
||||
.required('Username is required'),
|
||||
password: Yup.string()
|
||||
.required('Password is required')
|
||||
.min(6, 'Password must be at least 6 characters')
|
||||
});
|
||||
|
||||
async function onSubmit(values) {
|
||||
const usersStore = useUsersStore();
|
||||
const alertStore = useAlertStore();
|
||||
try {
|
||||
await usersStore.register(values);
|
||||
await router.push('/account/login');
|
||||
alertStore.success('Registration successful');
|
||||
} catch (error) {
|
||||
alertStore.error(error);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="content-spacer-smaller"></div>
|
||||
<div style="text-align: center;">
|
||||
<a class="title">ScheduleTogether</a>
|
||||
</div>
|
||||
<div class="content-spacer-small"></div>
|
||||
<div class="card-container">
|
||||
<div class="card shadow">
|
||||
<div style="min-width: 500px;">
|
||||
<h4 class="card-header">Register</h4>
|
||||
<div class="card-body">
|
||||
<Form @submit="onSubmit" :validation-schema="schema" v-slot="{ errors, isSubmitting }">
|
||||
<div class="card-form-group">
|
||||
<label class="card-form-label">Email</label>
|
||||
<Field name="email" type="text" class="card-form-control" :class="{ 'field-is-invalid': errors.email }" />
|
||||
<div class="invalid-feedback">{{ errors.email }}</div>
|
||||
</div>
|
||||
<div class="card-form-group">
|
||||
<label class="card-form-label">First Name</label>
|
||||
<Field name="firstName" type="text" class="card-form-control" :class="{ 'field-is-invalid': errors.firstName }" />
|
||||
<div class="invalid-feedback">{{ errors.firstName }}</div>
|
||||
</div>
|
||||
<div class="card-form-group">
|
||||
<label class="card-form-label">Last Name</label>
|
||||
<Field name="lastName" type="text" class="card-form-control" :class="{ 'field-is-invalid': errors.lastName }" />
|
||||
<div class="invalid-feedback">{{ errors.lastName }}</div>
|
||||
</div>
|
||||
<div class="card-form-group">
|
||||
<label class="card-form-label">Username</label>
|
||||
<Field name="username" type="text" class="card-form-control" :class="{ 'field-is-invalid': errors.username }" />
|
||||
<div class="invalid-feedback">{{ errors.username }}</div>
|
||||
</div>
|
||||
<div class="card-form-group">
|
||||
<label class="card-form-label">Password</label>
|
||||
<Field name="password" type="password" class="card-form-control" :class="{ 'field-is-invalid': errors.password }" />
|
||||
<div class="invalid-feedback">{{ errors.password }}</div>
|
||||
</div>
|
||||
<div class="card-form-group center">
|
||||
<button class="card-form-button" :disabled="isSubmitting">
|
||||
Register
|
||||
</button>
|
||||
<router-link to="login" class="card-form-button-link">Cancel</router-link>
|
||||
</div>
|
||||
<div class="card-form-group center">
|
||||
<Spinner v-show="isSubmitting" class="spinner-center" />
|
||||
</div>
|
||||
</Form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
27
src/views/account/index.ts
Executable file
27
src/views/account/index.ts
Executable file
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
export { default as Layout } from './Layout.vue';
|
||||
export { default as Login } from './LoginView.vue';
|
||||
export { default as Register } from './RegisterView.vue';
|
40
src/views/admin/DashboardView.vue
Executable file
40
src/views/admin/DashboardView.vue
Executable file
|
@ -0,0 +1,40 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import { storeToRefs } from 'pinia';
|
||||
|
||||
import { useAuthStore } from '@/stores';
|
||||
|
||||
const authStore = useAuthStore();
|
||||
const { user } = storeToRefs(authStore);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div v-if="user">
|
||||
<div style="text-align: center;">
|
||||
<p><router-link to="/admin/users">Manage Users</router-link></p>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
25
src/views/admin/index.ts
Executable file
25
src/views/admin/index.ts
Executable file
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
export { default as Dashboard } from './DashboardView.vue';
|
148
src/views/admin/users/AddEditView.vue
Executable file
148
src/views/admin/users/AddEditView.vue
Executable file
|
@ -0,0 +1,148 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import { Form, Field } from 'vee-validate';
|
||||
import * as Yup from 'yup';
|
||||
import { useRoute } from 'vue-router';
|
||||
import { storeToRefs } from 'pinia';
|
||||
|
||||
import { useUsersStore, useAlertStore } from '@/stores';
|
||||
import { router } from '@/router';
|
||||
|
||||
import { Spinner } from '@/components';
|
||||
|
||||
const usersStore = useUsersStore();
|
||||
const alertStore = useAlertStore();
|
||||
const route = useRoute();
|
||||
const id = route.params.id;
|
||||
|
||||
let title = 'Add User';
|
||||
let user = null;
|
||||
if (id) {
|
||||
title = 'Edit User';
|
||||
({ user } = storeToRefs(usersStore));
|
||||
usersStore.getById(id);
|
||||
}
|
||||
|
||||
const schema = Yup.object().shape({
|
||||
firstName: Yup.string()
|
||||
.required('First Name is required'),
|
||||
lastName: Yup.string()
|
||||
.required('Last Name is required'),
|
||||
username: Yup.string()
|
||||
.required('Username is required'),
|
||||
email: Yup.string()
|
||||
.required('Email is required'),
|
||||
role: Yup.string()
|
||||
.required('Role is required'),
|
||||
password: Yup.string()
|
||||
.transform(x => x === '' ? undefined : x)
|
||||
// password optional in edit mode
|
||||
.concat(user ? null : Yup.string().required('Password is required'))
|
||||
.min(8, 'Password must be at least 8 characters')
|
||||
});
|
||||
|
||||
async function onSubmit(values) {
|
||||
try {
|
||||
let message;
|
||||
if (user) {
|
||||
await usersStore.update(user.value.id, values)
|
||||
message = 'User updated';
|
||||
} else {
|
||||
await usersStore.add(values);
|
||||
message = 'User added';
|
||||
}
|
||||
await router.push('/admin/users');
|
||||
alertStore.success(message);
|
||||
} catch (error) {
|
||||
alertStore.error(error);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<h1 style="text-align: center;">{{title}}</h1>
|
||||
<template v-if="!(user?.loading || user?.error)">
|
||||
<div class="card-container">
|
||||
<div class="card">
|
||||
<Form @submit="onSubmit" :validation-schema="schema" :initial-values="user" v-slot="{ errors, isSubmitting }">
|
||||
<div class="card-form-group">
|
||||
<label class="card-form-label">Email</label>
|
||||
<Field name="email" type="text" class="card-form-control" :class="{ 'field-is-invalid': errors.email }" />
|
||||
<div class="invalid-feedback">{{ errors.email }}</div>
|
||||
</div>
|
||||
<div class="card-form-group">
|
||||
<label class="card-form-label">First Name</label>
|
||||
<Field name="firstName" type="text" class="card-form-control" :class="{ 'field-is-invalid': errors.firstName }" />
|
||||
<div class="invalid-feedback">{{ errors.firstName }}</div>
|
||||
</div>
|
||||
<div class="card-form-group">
|
||||
<label class="card-form-label">Last Name</label>
|
||||
<Field name="lastName" type="text" class="card-form-control" :class="{ 'field-is-invalid': errors.lastName }" />
|
||||
<div class="invalid-feedback">{{ errors.lastName }}</div>
|
||||
</div>
|
||||
<div class="card-form-group">
|
||||
<label class="card-form-label">Username</label>
|
||||
<Field name="username" type="text" class="card-form-control" :class="{ 'field-is-invalid': errors.username }" />
|
||||
<div class="invalid-feedback">{{ errors.username }}</div>
|
||||
</div>
|
||||
<div class="card-form-group">
|
||||
<label class="card-form-label">Role</label>
|
||||
<Field name="role" as="select" class="card-form-control" :class="{ 'field-is-invalid': errors.role }">
|
||||
<option value="">Select option..</option>
|
||||
<option value="user">user</option>
|
||||
<option value="member">member</option>
|
||||
<option value="admin">admin</option>
|
||||
</Field>
|
||||
<div class="invalid-feedback">{{ errors.role }}</div>
|
||||
</div>
|
||||
<div class="card-form-group">
|
||||
<label class="card-form-label">Password</label>
|
||||
<Field name="password" type="password" class="card-form-control" :class="{ 'field-is-invalid': errors.password }" />
|
||||
<div class="invalid-feedback">{{ errors.password }}</div>
|
||||
<label><em v-if="user">(Leave blank to keep the same password)</em></label>
|
||||
</div>
|
||||
<div class="card-form-group center">
|
||||
<button class="card-form-button" :disabled="isSubmitting">
|
||||
<Spinner v-show="isSubmitting" />
|
||||
Save
|
||||
</button>
|
||||
<button class="card-form-button negative" style="margin-left:20px;" @click="router.push('/admin/users')">Cancel</button>
|
||||
</div>
|
||||
</Form>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<template v-if="user?.loading">
|
||||
<div>
|
||||
<Spinner />
|
||||
</div>
|
||||
</template>
|
||||
<template v-if="user?.error">
|
||||
<div class="text-center">
|
||||
<div class="text-negative">Error loading user: {{user.error}}</div>
|
||||
</div>
|
||||
</template>
|
||||
</template>
|
31
src/views/admin/users/Layout.vue
Executable file
31
src/views/admin/users/Layout.vue
Executable file
|
@ -0,0 +1,31 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<div class="container">
|
||||
<router-view />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
120
src/views/admin/users/ListView.vue
Executable file
120
src/views/admin/users/ListView.vue
Executable file
|
@ -0,0 +1,120 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import { storeToRefs } from 'pinia';
|
||||
import { useUsersStore } from '@/stores';
|
||||
import { router } from '@/router';
|
||||
import { ref, computed } from 'vue';
|
||||
|
||||
import { Spinner } from '@/components';
|
||||
|
||||
const usersStore = useUsersStore();
|
||||
const { users } = storeToRefs(usersStore);
|
||||
|
||||
const searchQuery = ref('');
|
||||
|
||||
usersStore.getAll();
|
||||
|
||||
var filteredUsers = computed(() => {
|
||||
if (users.value.length) {
|
||||
const filter = searchQuery.value.toLowerCase();
|
||||
const filtered = users.value.filter(row => {
|
||||
const username = row.username.toString().toLowerCase();
|
||||
const firstname = row.firstName.toString().toLowerCase();
|
||||
const lastname = row.lastName.toString().toLowerCase();
|
||||
const email = row.email.toLowerCase();
|
||||
return username.includes(filter) ||
|
||||
email.includes(filter) ||
|
||||
firstname.includes(filter) ||
|
||||
lastname.includes(filter);
|
||||
});
|
||||
return filtered.length > 0 ? filtered : [];
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="content-spacer-smaller"></div>
|
||||
<div class="card-container">
|
||||
<div class="card wide">
|
||||
<h4 class="card-header big">Users</h4>
|
||||
<div>
|
||||
<div class="card-form-row compact">
|
||||
<button class="card-form-button" @click="router.push('/admin/users/add')">Add User</button>
|
||||
<div class="card-form-group" style="margin-bottom:10px;">
|
||||
<input name="searchbox" type="text" placeholder="search" v-model="searchQuery" class="card-form-control" style="height:35px;"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<table class="card-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width: 16%">First Name</th>
|
||||
<th style="width: 16%">Last Name</th>
|
||||
<th style="width: 16%">Email</th>
|
||||
<th style="width: 16%">Username</th>
|
||||
<th style="width: 14%">Role</th>
|
||||
<th style="width: 6%"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<template v-if="filteredUsers && filteredUsers.length">
|
||||
<tr v-for="user in filteredUsers" :key="user.id" class="card-table-row">
|
||||
<td>{{ user.firstName }}</td>
|
||||
<td>{{ user.lastName }}</td>
|
||||
<td>{{ user.email }}</td>
|
||||
<td>{{ user.username }}</td>
|
||||
<td>{{ user.role }}</td>
|
||||
<td style="white-space: nowrap">
|
||||
<button @click="router.push('/admin/users/edit/'+user.id)" class="card-list-button">Edit</button>
|
||||
<button @click="usersStore.delete(user.id)" class="card-list-button negative" :disabled="user.isDeleting">
|
||||
<Spinner v-if="user.isDeleting" />
|
||||
<span v-else>Delete</span>
|
||||
</button>
|
||||
</td>
|
||||
</tr>
|
||||
</template>
|
||||
<tr v-if="users.loading">
|
||||
<td colspan="7" class="text-center">
|
||||
<Spinner />
|
||||
</td>
|
||||
</tr>
|
||||
<tr v-if="filteredUsers.length == 0 && !users.loading" class="text-center">
|
||||
<td colspan="7">
|
||||
<div class="text-negative">No user found</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr v-if="users.error">
|
||||
<td colspan="7">
|
||||
<div class="text-negative">Error loading users: {{users.error}}</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
27
src/views/admin/users/index.ts
Executable file
27
src/views/admin/users/index.ts
Executable file
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
export { default as AddEdit } from './AddEditView.vue';
|
||||
export { default as Layout } from './Layout.vue';
|
||||
export { default as List } from './ListView.vue';
|
25
src/views/index.ts
Executable file
25
src/views/index.ts
Executable file
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
export {default as Home} from './HomeView.vue';
|
31
src/views/schedule/Layout.vue
Executable file
31
src/views/schedule/Layout.vue
Executable file
|
@ -0,0 +1,31 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<div class="container">
|
||||
<router-view />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
62
src/views/schedule/ScheduleView.vue
Executable file
62
src/views/schedule/ScheduleView.vue
Executable file
|
@ -0,0 +1,62 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import { storeToRefs } from 'pinia';
|
||||
import { router } from '@/router';
|
||||
|
||||
import { useSchedulesStore } from '@/stores';
|
||||
|
||||
import { Spinner } from '@/components';
|
||||
|
||||
const scheduleStore = useSchedulesStore();
|
||||
const { schedule } = storeToRefs(scheduleStore);
|
||||
|
||||
scheduleStore.getCurrent();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<div class="content-spacer-small"></div>
|
||||
<div class="card-container">
|
||||
<div class="card shadow">
|
||||
<div style="min-width: 500px;">
|
||||
<div>
|
||||
<h4 class="card-header">Schedule</h4>
|
||||
<div class="card-form-group center">
|
||||
<button class="card-form-button" v-if="!schedule.content" @click="router.push('/schedule/add')">
|
||||
Add Schedule
|
||||
</button>
|
||||
<button class="card-form-button negative" v-if="schedule.content" @click="scheduleStore.deleteCurrent()" :disabled="schedule.isDeleting">
|
||||
<Spinner v-show="schedule.isDeleting" class="spinner-center" />
|
||||
Delete Schedule
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<Spinner v-if="schedule.loading" class="spinner-center" />
|
||||
</div>
|
||||
</template>
|
68
src/views/schedule/add/AddView.vue
Executable file
68
src/views/schedule/add/AddView.vue
Executable file
|
@ -0,0 +1,68 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import { storeToRefs } from 'pinia';
|
||||
import { useAuthStore } from '@/stores';
|
||||
import { router } from '@/router';
|
||||
|
||||
const authStore = useAuthStore();
|
||||
const { user } = storeToRefs(authStore);
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="content-spacer-smaller"></div>
|
||||
<h1 style="text-align: center;">Add Schedule</h1>
|
||||
<div class="content-spacer-smaller"></div>
|
||||
<div class="card-container">
|
||||
<div class="card shadow margin">
|
||||
<img class="card-logo skola24" src="../../../assets/logo_skola24.svg" alt="Skola24">
|
||||
<br>
|
||||
<div class="card-subbox">
|
||||
<p class="card-subbox-item">✅ Auto-updating</p>
|
||||
<p class="card-subbox-item">✅ No login required</p>
|
||||
<p class="card-subbox-item">✅ Full data</p>
|
||||
</div>
|
||||
<div class="card-form-row center">
|
||||
<button class="card-form-button" @click="router.push('/schedule/add/skola24')">Import from <b>Skola24</b></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card shadow margin">
|
||||
<img class="card-logo schoolsoft" src="../../../assets/logo_schoolsoft.svg" alt="Skola24">
|
||||
<br>
|
||||
<div class="card-subbox">
|
||||
<p class="card-subbox-item">❌ Manual updates</p>
|
||||
<p class="card-subbox-item">❌ Login required</p>
|
||||
<p class="card-subbox-item">❌ Partial data</p>
|
||||
</div>
|
||||
<div class="card-form-row center">
|
||||
<button class="card-form-button" @click="router.push('/schedule/add/schoolsoft')">Import from <b>SchoolSoft</b></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-form-row center">
|
||||
<button class="card-form-button negative" @click="router.push('/schedule')">Cancel</button>
|
||||
</div>
|
||||
</template>
|
66
src/views/schedule/add/SchoolSoft.vue
Executable file
66
src/views/schedule/add/SchoolSoft.vue
Executable file
|
@ -0,0 +1,66 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import { storeToRefs } from 'pinia';
|
||||
import { useAuthStore } from '@/stores';
|
||||
import { router } from '@/router';
|
||||
import { getStatus } from '@/helpers';
|
||||
import { ref } from 'vue';
|
||||
|
||||
import { Spinner } from '@/components';
|
||||
|
||||
const authStore = useAuthStore();
|
||||
const { user } = storeToRefs(authStore);
|
||||
|
||||
var desUrl = ref('');
|
||||
var returnCode = ref(1);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="content-spacer-smaller"></div>
|
||||
<h1 style="text-align: center;">Add Schedule</h1>
|
||||
<div class="content-spacer-small"></div>
|
||||
<div class="card-container">
|
||||
<div v-if="desUrl == ''" style="text-align: center;">
|
||||
<p>Enter school code</p>
|
||||
<div class="card-form-group" style="margin-bottom:10px;">
|
||||
<input name="searchbox" type="text" placeholder="input code.." v-model="schoolCode" class="card-form-control" style="height:35px;"/>
|
||||
</div>
|
||||
<div class="card-form-row">
|
||||
<button style="margin-right:20px;" class="card-form-button negative" @click="router.push('/schedule/add')">Cancel</button>
|
||||
<button class="card-form-button" @click="desUrl = `https://sms.schoolsoft.se/${schoolCode}/html/redirect_login.htm`">Continue</button>
|
||||
</div>
|
||||
</div>
|
||||
<div v-else>
|
||||
<div v-if="returnCode == 0">
|
||||
<Spinner />
|
||||
</div>
|
||||
<div v-else class="card">
|
||||
<iframe :src="desUrl" title="SchoolSoft" width="500px" height="700px" sandbox="allow-forms allow-scripts allow-same-origin allow-popups">aaa</iframe>
|
||||
</div>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
</template>
|
201
src/views/schedule/add/Skola24.vue
Executable file
201
src/views/schedule/add/Skola24.vue
Executable file
|
@ -0,0 +1,201 @@
|
|||
<!--
|
||||
ScheduleTogether Frontend
|
||||
Copyright (C) 2024, Marco Vitchi Thulin
|
||||
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License version 3
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License version 3 for more details.
|
||||
|
||||
This program incorporates external libraries for certain functionalities.
|
||||
These libraries are covered by their respective licenses, and their usage
|
||||
agreements are as outlined in their respective documentation or source
|
||||
code.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
|
||||
import { useAlertStore, useProvidersStore } from '@/stores';
|
||||
import { router } from '@/router';
|
||||
import { ref } from 'vue';
|
||||
|
||||
import { Spinner } from '@/components';
|
||||
|
||||
const alertStore = useAlertStore();
|
||||
const providerStore = useProvidersStore();
|
||||
|
||||
providerStore.setProvider('skola24');
|
||||
|
||||
var step = ref(0);
|
||||
var hostValue = ref('');
|
||||
var schoolValue = ref("");
|
||||
var classValue = ref("");
|
||||
var termValue = ref("");
|
||||
|
||||
async function submitHost() {
|
||||
providerStore.setHost(hostValue);
|
||||
await providerStore.getSchools();
|
||||
if (providerStore.schools.data) {
|
||||
step.value = 1;
|
||||
}
|
||||
}
|
||||
|
||||
async function submitSchool() {
|
||||
const schoolId = schoolValue.value;
|
||||
console.log(schoolId);
|
||||
if (!schoolId) {
|
||||
alertStore.error('You need to select a school before continuing', 5000)
|
||||
} else {
|
||||
await providerStore.getClasses(schoolId);
|
||||
if (providerStore.classes.data) {
|
||||
step.value = 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
async function submitClass() {
|
||||
const classId = classValue.value;
|
||||
console.log(classId);
|
||||
if (!classId) {
|
||||
alertStore.error('You need to select a class before continuing', 5000)
|
||||
} else {
|
||||
await providerStore.getTerms();
|
||||
if (providerStore.terms.data) {
|
||||
step.value = 3;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function submitTerm() {
|
||||
const termId = termValue.value;
|
||||
console.log(termId);
|
||||
if (!termId) {
|
||||
alertStore.error('You need to select a term before continuing', 5000)
|
||||
} else {
|
||||
providerStore.getSchedule(schoolValue.value, classValue.value, termId);
|
||||
step.value = 4;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="content-spacer-smaller"></div>
|
||||
<h1 style="text-align: center;">Add Schedule</h1>
|
||||
<div class="content-spacer-small"></div>
|
||||
<div class="card-container">
|
||||
<div class="card shadow" v-if="step == 0">
|
||||
<p class="text-center">Enter school code</p>
|
||||
<div class="card-form-group center" style="margin-bottom:10px;">
|
||||
<input type="text" placeholder="example.skola24.se" v-model="hostValue" class="card-form-control center"/>
|
||||
</div>
|
||||
<div class="card-form-row center">
|
||||
<button style="margin-right:20px;" class="card-form-button negative" @click="router.push('/schedule/add')">Cancel</button>
|
||||
<button @click="submitHost()" class="card-form-button">Continue</button>
|
||||
</div>
|
||||
<Spinner v-if="providerStore.schools.loading" class="spinner-center" />
|
||||
</div>
|
||||
<div v-if="step == 1">
|
||||
<div class="card shadow" v-if="providerStore.schools.data.length == 0">
|
||||
<h4 class="card-header error">Failed</h4>
|
||||
<p class="text-center">
|
||||
Organization does not provide enough data.<br>
|
||||
Because of this, the chosen organization is not supported at the moment.<br>
|
||||
Try another school code, or select another provider.<br>
|
||||
If you believe this to be an error, please contact administration.<br>
|
||||
</p>
|
||||
<div class="card-form-row center">
|
||||
<button class="card-form-button negative" @click="router.push('/schedule/add')">OK</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card shadow" v-else>
|
||||
<p class="text-center">Select a school</p>
|
||||
<div class="card-form-group">
|
||||
<select v-model="schoolValue" id="schoolSelect" class="card-form-control">
|
||||
<option value="">Select option..</option>
|
||||
<option v-for="school in providerStore.schools.data" :value="school.id">{{ school.name }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="card-form-row center">
|
||||
<button style="margin-right:20px;" class="card-form-button negative" @click="router.push('/schedule/add')">Cancel</button>
|
||||
<button @click="submitSchool()" class="card-form-button">Continue</button>
|
||||
</div>
|
||||
<Spinner v-if="providerStore.classes.loading" class="spinner-center" />
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="step == 2">
|
||||
<div class="card shadow" v-if="providerStore.classes.data.length == 0">
|
||||
<h4 class="card-header error">Failed</h4>
|
||||
<p class="text-center">
|
||||
The selected school does not provide enough data.<br>
|
||||
Because of this, the chosen school is not supported.<br>
|
||||
Try another school code, or select another provider.<br>
|
||||
If you believe this to be an error, please contact us.<br>
|
||||
</p>
|
||||
<div class="card-form-row center">
|
||||
<button class="card-form-button negative" @click="router.push('/schedule/add')">OK</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card shadow" v-else>
|
||||
<p class="text-center">Select a class</p>
|
||||
<div class="card-form-group">
|
||||
<select v-model="classValue" id="classSelect" class="card-form-control">
|
||||
<option value="">Select option..</option>
|
||||
<option v-for="_class in providerStore.classes.data" :value="_class.id">{{ _class.name }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="card-form-row center">
|
||||
<button style="margin-right:20px;" class="card-form-button negative" @click="router.push('/schedule/add')">Cancel</button>
|
||||
<button @click="submitClass()" class="card-form-button">Continue</button>
|
||||
</div>
|
||||
<Spinner v-if="providerStore.terms.loading" class="spinner-center" />
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="step == 3">
|
||||
<div class="card shadow" v-if="providerStore.terms.data.length == 0">
|
||||
<h4 class="card-header error">Failed</h4>
|
||||
<p class="text-center">
|
||||
The chosen organization does not provide enough data.<br>
|
||||
Because of this, this organization is not supported.<br>
|
||||
Try another school code, or select another provider.<br>
|
||||
If you believe this to be an error, please contact us.<br>
|
||||
</p>
|
||||
<div class="card-form-row center">
|
||||
<button class="card-form-button negative" @click="router.push('/schedule/add')">OK</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card shadow" v-else>
|
||||
<p class="text-center">Select a term</p>
|
||||
<div class="card-form-group">
|
||||
<select v-model="termValue" id="classSelect" class="card-form-control">
|
||||
<option value="">Select option..</option>
|
||||
<option v-for="term in providerStore.terms.data" :value="term.id">{{ term.name }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="card-form-row center">
|
||||
<button style="margin-right:20px;" class="card-form-button negative" @click="router.push('/schedule/add')">Cancel</button>
|
||||
<button @click="submitTerm()" class="card-form-button">Continue</button>
|
||||
</div>
|
||||
<Spinner v-if="providerStore.schedule.loading" class="spinner-center" />
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="step == 4">
|
||||
<div class="card shadow" v-if="providerStore.schedule.loading">
|
||||
<p class="text-center">Please wait..</p>
|
||||
<Spinner class="spinner-center" />
|
||||
</div>
|
||||
<div class="card shadow" v-else>
|
||||
<p class="text-center">Schedule data!</p>
|
||||
<p class="text-center">{{ providerStore.schedule }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
27
src/views/schedule/add/index.ts
Executable file
27
src/views/schedule/add/index.ts
Executable file
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
export { default as Add } from './AddView.vue';
|
||||
export { default as SchoolSoft } from './SchoolSoft.vue';
|
||||
export { default as Skola24 } from './Skola24.vue';
|
26
src/views/schedule/index.ts
Executable file
26
src/views/schedule/index.ts
Executable file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* ScheduleTogether Frontend
|
||||
* Copyright (C) 2024, Marco Vitchi Thulin
|
||||
*
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License version 3
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License version 3 for more details.
|
||||
*
|
||||
* This program incorporates external libraries for certain functionalities.
|
||||
* These libraries are covered by their respective licenses, and their usage
|
||||
* agreements are as outlined in their respective documentation or source
|
||||
* code.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
export { default as Schedule } from './ScheduleView.vue';
|
||||
export { default as Layout } from './Layout.vue';
|
13
tsconfig.app.json
Executable file
13
tsconfig.app.json
Executable file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
||||
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
|
||||
"exclude": ["src/**/__tests__/*"],
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"baseUrl": ".",
|
||||
"allowJs": true,
|
||||
"paths": {
|
||||
"@/*": ["./src/*"]
|
||||
}
|
||||
}
|
||||
}
|
11
tsconfig.json
Executable file
11
tsconfig.json
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"files": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.node.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.app.json"
|
||||
}
|
||||
]
|
||||
}
|
16
tsconfig.node.json
Executable file
16
tsconfig.node.json
Executable file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"extends": "@tsconfig/node18/tsconfig.json",
|
||||
"include": [
|
||||
"vite.config.*",
|
||||
"vitest.config.*",
|
||||
"cypress.config.*",
|
||||
"nightwatch.conf.*",
|
||||
"playwright.config.*"
|
||||
],
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Bundler",
|
||||
"types": ["node"]
|
||||
}
|
||||
}
|
14
update-version.sh
Executable file
14
update-version.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Check if an argument is provided and not empty
|
||||
if [ -z "$1" ]; then
|
||||
echo "No new version provided. Won't update package.json."
|
||||
exit 0 # Exit with success
|
||||
fi
|
||||
|
||||
new_version=$1
|
||||
|
||||
# Update the version field in package.json
|
||||
sed -i "s/\"version\": \".*\"/\"version\": \"$new_version\"/" package.json
|
||||
|
||||
echo "Version in package.json updated to: $new_version"
|
20
vite.config.ts
Executable file
20
vite.config.ts
Executable file
|
@ -0,0 +1,20 @@
|
|||
import { fileURLToPath, URL } from 'node:url';
|
||||
|
||||
import { defineConfig } from 'vite';
|
||||
import vue from '@vitejs/plugin-vue';
|
||||
import vueJsx from '@vitejs/plugin-vue-jsx';
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
base: '/',
|
||||
|
||||
plugins: [
|
||||
vue(),
|
||||
vueJsx(),
|
||||
],
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
||||
},
|
||||
},
|
||||
});
|
Loading…
Add table
Reference in a new issue