-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from hyoo-ru/master
On-site secure registration, guest list, stats timeline, poster generation
- Loading branch information
Showing
31 changed files
with
595 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ | |
} | ||
|
||
[piterjs_app_menu] { | ||
flex: 0 0 14rem; | ||
flex: 0 0 15rem; | ||
} | ||
|
||
[piterjs_app_menu_content] { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace $.$$ { | ||
|
||
$mol_style_define( $piterjs_meetup_guests, { | ||
|
||
flex: { | ||
basis: `20rem`, | ||
}, | ||
|
||
Filter: { | ||
align: { | ||
self: `stretch`, | ||
} | ||
}, | ||
|
||
} ) | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
$piterjs_meetup_guests $mol_page | ||
meetup $piterjs_meetup | ||
title \Список гостей | ||
tools / | ||
<= Close $mol_link | ||
arg * guests null | ||
sub / | ||
<= Close_icon $mol_icon_cross | ||
body / | ||
<= Content $mol_list rows / | ||
<= Filter $mol_search | ||
hint \Поиск... | ||
query? <=> filter? \ | ||
<= Person_list $mol_list | ||
rows <= person_list / | ||
<= Person*0_0 $piterjs_person_snippet | ||
person <= person* $piterjs_person | ||
needle <= filter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
namespace $.$$ { | ||
export class $piterjs_meetup_guests extends $.$piterjs_meetup_guests { | ||
|
||
@ $mol_mem | ||
person_list() { | ||
return this.meetup().joined_list() | ||
.filter( $mol_match_text( this.filter(), person => [ person.name_real(), person.id() ] ) ) | ||
.map( person => this.Person( person ) ) | ||
} | ||
|
||
person( person: $piterjs_person ) { | ||
return person | ||
} | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.