This is the repository for the Brock University Computer Science Club web page.
- Angular CLI: 12.1.1
- Package Version
- @angular-devkit/architect 0.1201.1
- @angular-devkit/build-angular 12.1.1
- @angular-devkit/core 12.1.1
- @angular-devkit/schematics 12.1.1
- @angular/fire 6.1.5
- @schematics/angular 12.1.1
- rxjs 6.6.7
- typescript 4.3.5
- webpack 5.44.0
Dev env: https://brockcsc-test.firebaseapp.com
- First run
npm install
from the terminal. This will install all the required packages into thenode_modules
folder in the root directory.
- To run a development server, run
npm run start
. - This will spawn a server which can be accessed from
http://localhost:8080
. - If wanting to lazy load images from the
assets
folder, runnpm run gen:img
. This will generate a file which can be located atsrc/tmp/assets.json
. The file contains the configs for the images which then can be used within the app.
- In order to build the site, run
npm run build
. This generates adist
folder in the root directory which will contain the minimized version of the site. - This will also run a postbuild script that will generate a serviceworker which will provide the PWA capabilities for the site.
- You will need firebase cli installed. See https://firebase.google.com/docs/cli.
- Use firebase login to login with the brock csc gmail account.
- run
npm run prod:dev
to deploy. This deploys the website on the brockcsc-test firebase project, which can be viewed at https://brockcsc-test.firebaseapp.com/
- Create a pull request/push to the production branch of this repository. This triggers GitHub actions deployment script, which should build and deploy the project in the master branch, and will then be available at brockcsc.github.io or brockcsc.ca
Make sure that your module is importing the SharedModule
.
<csc-upload></csc-upload>
Parameter | Value(s) | Description |
---|---|---|
message | string |
The message that will be displayed on top of the upload container. |
type | single, multi | How many files should the component upload. |
data | CscFile[] |
When editing, you may want to pass existing file data to the dropper. |
Make sure that your module is importing the SharedModule
.
<csc-modal>
<csc-modal-header>
<!-- Modal Header -->
</csc-modal-header>
<csc-modal-body>
<!-- Modal Body -->
</csc-modal-body>
<csc-modal-footer>
<!-- Modal Footer -->
</csc-modal-footer>
</csc-modal>
There are two ways to programatically open and close the modal.
- Access the modal component using local variables from the parent component
<button (click)="modalAccessor.open()">Open Modal</button>
<csc-modal #modalAccessor> ...</csc-modal>
- Trigger using the ViewChild reference from the parent component.
<button (click)="openModal()">Open Modal</button>
<csc-modal #modalAccessor> ...</csc-modal>
import { ViewChild } from '@angular/core';
@ViewChild('modalAccessor') modal: ModalComponent;
public openModal(): void {
this.modal.open();
}
Make sure that your module is importing the SharedModule
.
Parameter | Value(s) | Description |
---|---|---|
label | string |
This parameter will add a label to the input. |
labelLocation | left, top | Sets the position of where the label will be placed relative to the input field. |
<csc-input-container label="label" labelLocation="left">
<input type="text" />
</csc-input-container>
Make sure that your module is importing the SharedModule
.
<csc-checkbox>
<input type="checkbox" />
</csc-checkbox>
Parameter | Value(s) | Description |
---|---|---|
label | string |
This parameter will add a label to the input. |
Make sure that your module is importing the SharedModule
.
Parameter | Value(s) | Description |
---|---|---|
forId (required) | string |
ID used to identify the host element for the tooltip. |
direction | 'top', 'right', 'left', 'bottom' (default: bottom) | Sets the position of where the tooltip will be placed relative to the host element. |
<!-- Host -->
<div id="someId"></div>
<!-- Tooltip, forId and host id must match -->
<csc-tooltip forId="someId" direction="right">
<p>Some HTML content</p>
</csc-tooltip>
To use the csc button, a csc-button
attribute needs to be added to either an a
or button
tag.
<button csc-button>Text</button>
<a csc-button>Text</a>
Simple progress bar with a binding for current progress value.
Parameter | Value(s) | Description |
---|---|---|
color | 'navy', 'maroon' (default: navy) | The colour of the progress bar. |
progress | 0-100 | Progress of the bar. |
<csc-progress-bar progress="25" color="navy"></csc-progress-bar>
Simple loader component that has no functionality. Use with *ngIf
to manage whether it is displayed or not.
<csc-spinner></csc-spinner>
Slideshow component, to be used with child Slide
components. Intended to be used with csc-image
.
The csc-slideshow
must contain slides.
Parameter | Value(s) | Description |
---|---|---|
delay | A number (default: 3) | The delay in seconds before the next slide. |
<csc-slideshow delay="2">
<csc-slide>
<!-- content -->
<csc-img ...></csc-img>
</csc-slide>
<csc-slide>
<!-- content -->
<csc-img ...></csc-img>
</csc-slide>
</csc-slideshow>