-
Notifications
You must be signed in to change notification settings - Fork 28
[Strategize] Firetext on Desktop #203
Comments
For the UI issue, I am strongly gravitating towards providing separate html layouts for desktop and mobile. The problem with this is that we would have to maintain both, and create separate scripts that can update each layout. Media queries are nice, but they get messy, and there is only so much that one can do without updating the layout. Another idea is to have a central layout file (index.html) which contains HTML common to both, and insert desktop/mobile "components" based on the device. E.g.
|
So I guess this depends on #190 and #204. Do you see any major problems with the current UI? I think if anything needs a different UI between desktop and mobile it would be the editors themselves, I think the current Firetext UI is fine. (While thinking about it I came up with #207, but I don't think that warrants a separate UI?) |
Hm, alright. I'll think about it more. Maybe we could indeed create (or use?), e.g., a "menu" component which is different on desktop and mobile. |
What about using templates? |
Discovered today on Twitter: <script>
if ('registerElement' in document &&
&& 'createShadowRoot' in HTMLElement.prototype
&& 'import' in document.createElement('link')
&& 'content' in document.createElement('template')) {
// native WebComponents supprt
} else {
document.write(
'<script src="bower_components/webcomponentsjs/webcomponents.js"></script>'
);
}
</script> Credits goes to @geelen. People are asking for necessary on Twitter. |
I'd expect a border around the document. |
Thanks for getting the filename in there. My first nitpick would be that you should rotate the arrow icon here, too. Also, now that I'm thinking about it, it might make sense to animate the dialog from the direction of the toolbar (and arrow). @Ryuno-Ki well, or maybe some box-shadow? |
@twiss shadow would work, too. Anything, which "lifts" the document from the background. |
So, am I correct that we have decided upon media queries + web components for our desktop interface? I have split the implementation discussion for the desktop UI into #258. The next thing we need to discuss in this issue is how to store files. Some options:
|
Firetext is badly suited to the desktop platform right now. We need to decide how we will revise the app's architecture to support a larger form-factor.
Decisions:
Still needs to be discussed:
The text was updated successfully, but these errors were encountered: