-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature coding camp framework #3728
base: master
Are you sure you want to change the base?
Conversation
ngOnInit() { | ||
console.log("File select init."); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is potentially unnnecessary.
background: black; | ||
opacity: 0.5; | ||
background-color: #20202020; | ||
backdrop-filter: blur(7px); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change was just an quick try/upgrade. Not necessary if you don't like :)
|
||
export type InputType = "TEXTAREA" | "TEXT"; | ||
|
||
@Component({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mietin että ei ehkä sittenkään ole kovin mielekästä pitää tätä erillisenä komponenttina. Ajatus oli että textfield-plugin ja tämä sekä tulevaisuudessa muut mahdolliset kentät voisi käyttää ns "yleiskäyttöistä" tekstiboksia, mutta nyt kun katsoo tarkemmin mitä tuo user-profile-component tuolla tekstilaatikoillaan tekee niin ehkä ylläpidon kannalta on selkeämpi vain jättää tämä pois. Sen sijaan profiilikomponentissa voisi suoraan käyttää ja <textarea>-elementtejä.
Tällä hetkellä ainoa toisto mistä pääsisi eroon erillisellä komponentilla on nuo varoitusvärit, mutta niiden css-pätkien kopsiminen toiseen paikkaan ei ole kovin iso homma vrt. uuden komponentin ylläpito. Nuo nykyiset komponentin bindaukset saa helposti suoraan siihen -elementtiin, eikä silloin tarvitse kikkailla angularin inputtien ja eventtien kanssa. Esim valueChange voi olla suoraan ngModelChange-bindaus ja sisällön saa suoraan kaksisuuntaisella ngModel-bindauksella
d869257
to
4c8cc50
Compare
@@ -461,6 +461,9 @@ export class FileSelectManagerComponent { | |||
}[] = []; | |||
|
|||
constructor(public cdr: ChangeDetectorRef) {} | |||
ngOnInit() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tein pakotetun puskun tässä välissä, Simon tekemät muutokset on temp haarassa tallessa.
What's new
First feature implementation for coding camp course template.
The feature
User profile component.
Profile data is stored into personal folder, "profile" document, into document settings.