-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#240 Create page context. Move base contexts to page module side
- Loading branch information
Showing
4 changed files
with
38 additions
and
18 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from . import base, pages | ||
from .base import Context, Contexts | ||
from .pages import Page |
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,21 @@ | ||
import abc | ||
import collections | ||
import typing | ||
|
||
|
||
class Context(abc.ABC): | ||
|
||
@abc.abstractmethod | ||
def context(self) -> typing.Dict[str, typing.Any]: | ||
... | ||
|
||
|
||
class Contexts(Context): | ||
|
||
def __init__(self, *contexts: typing.List[Context]): | ||
self.contexts = contexts | ||
|
||
def context(self): | ||
return dict(collections.ChainMap( | ||
*[ctx.context() for ctx in self.contexts] | ||
)) |
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,12 @@ | ||
from .base import Context | ||
|
||
|
||
class Page(Context): | ||
|
||
def __init__(self, page): | ||
self.page = page | ||
|
||
def context(self): | ||
return { | ||
'page': self.page, | ||
} |